Question

I couldn't figure out how to make the bootstrap column like this:

col 3 | col 4.5 | col 4.5 
Was it helpful?

Solution

You can try this :

Just split a 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>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top