Half columns in Twitter Bootstrap 3

谁说我不能喝 提交于 2019-11-27 10:04:11

问题


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

col 3 | col 4.5 | col 4.5 

回答1:


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>


来源:https://stackoverflow.com/questions/22986664/half-columns-in-twitter-bootstrap-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!