【发布时间】:2015-08-21 12:08:04
【问题描述】:
如何使用 bootstrap 3 创建以下网格? 我检查了很多答案,但没有找到我的网格的解决方案。
【问题讨论】:
-
请发布您的代码。
标签: twitter-bootstrap-3 html-table
如何使用 bootstrap 3 创建以下网格? 我检查了很多答案,但没有找到我的网格的解决方案。
【问题讨论】:
标签: twitter-bootstrap-3 html-table
在 Bootstrap 3 中,.span* 类已被删除,取而代之的是 .col-* 类的组合:.col-xs-*、.col-sm-*、.col-md-* 和 .col-lg-*。
【讨论】:
制作 3 个大列,并在每个列内根据需要添加更多行。
例子:
<div class="row">
<div class="col-md-4">
<p>left column text here you can also add another row here with more cols inside</p>
</div>
</div>
这里是网格系统的参考:http://getbootstrap.com/css/#grid
【讨论】: