twitter-bootstrap Twitter Bootstrap 3 中的半列

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/22986664/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-21 20:28:36  来源:igfitidea点击:

Half columns in Twitter Bootstrap 3

twitter-bootstraptwitter-bootstrap-3multiple-columnsgrid-layout

提问by Nerdar

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

我不知道如何制作这样的引导列:

col 3 | col 4.5 | col 4.5 

回答by BENARD Patrick

You can try this :

你可以试试这个:

Just split a col-9 in 2 parts.

只需将 col-9 分成两部分。

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

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

HTML:

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>