Half columns on Twitter Bootstrap 3

I could not figure out how to make the bootstrap column as follows:

col 3 | col 4.5 | col 4.5 
+59
twitter-bootstrap twitter-bootstrap-3 grid-layout multiple-columns
Apr 10 '14 at 11:24
source share
1 answer

You can try the following:

Just divide the col-9 into 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> 
+122
Apr 10 '14 at 11:32
source share



All Articles