Half columns in Twitter Bootstrap 3 -


i couldn't figure out how make bootstrap column this:

col 3 | col 4.5 | col 4.5  

you can try :

just split col-9 in 2 parts.

bootply : http://www.bootply.com/128927

html :

   <div class="col-xs-3">  col-xs-3 </div>    <div class="col-xs-9">       <div class="row">          <div class="col-xs-6">col-xs-4.5</div>          <div class="col-xs-6">col-xs-4.5  </div>       </div>    </div> 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -