如何在bootstrap 3中创建复杂的网格,(列rowspan)

时间:2015-08-21 12:08:05

标签: twitter-bootstrap-3 html-table

如何使用bootstrap 3创建以下网格? 我检查了很多答案,但没有找到我的网格解决方案。

bootstrap 3 grid with row-span

2 个答案:

答案 0 :(得分:1)

制作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

答案 1 :(得分:0)

在Bootstrap 3中,.span*类已被删除,并替换为.col-*类的组合:.col-xs-*.col-sm-*.col-md-*.col-lg-*

Source