-1

我正在使用一个网格,它允许我创建一个子网格并显示一些细节,比如这个链接

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

有谁知道该怎么做?

4

1 回答 1

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>
于 2013-05-07T21:48:31.583 回答