Half columns in Twitter Bootstrap 3

Twitter BootstrapTwitter Bootstrap-3Multiple ColumnsGrid Layout

Twitter Bootstrap Problem Overview


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

col 3 | col 4.5 | col 4.5 

Twitter Bootstrap Solutions


Solution 1 - Twitter Bootstrap

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>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNerdarView Question on Stackoverflow
Solution 1 - Twitter BootstrapBENARD PatrickView Answer on Stackoverflow