Twitter Bootstrap网格与详细信息视图

时间:2013-05-07 21:23:32

标签: jquery twitter-bootstrap

我正在使用一个网格,允许我创建一个子网格并显示一些细节,例如link

没关系,它正在运行,但是现在我需要使用具有此功能的Twitter Bootstrap网格。

有谁知道怎么做?

1 个答案:

答案 0 :(得分:0)

Twitter引导网格位于一排12列系统中。你可以像这样嵌套网格系统:

<div class="row">
    <div class="span5">
        The width of this div is 5/12ths of the width of its row.
    </div>
    <div class="span7">
        <div class="row">
            <div class="span6">
                 This is half of the width of the nested row, 
                 which is then 7/12ths of the width of its parent row
            </div>
            <div class="span6">
            </div>
        </div>
    </div>
</div>