5
我試圖正確地使用Twitter Bootstrap與流體網格對齊偏移元素。 (注:電網被定製爲30列)偏移Twitter內的div元素的垂直位置引導程序
考慮到紅色方框,這是試圖DIV佈局:http://imgur.com/IkB2G 這是我的代碼目前的實際位置:http://imgur.com/oJ2mG
這裏是我使用的代碼。不確定如何讓較低的紅色框移動到它上面的空白區域,每個圖像。
<div class="container-fluid nomargin">
<div class="row-fluid span30 nomargin"><div style="height:10px"></div></div> <!-- Vertical spacing between menu and content-->
<div class="row-fluid">
<div class="span4"></div>
<div class="span16 white-box">
<!--Body content-->
<div style="height:100px"></div>
</div>
<div class="span6 white-box">
<!--Body content-->
<div style="height:300px"></div>
</div>
<div class="span16 white-box">
<!--Body content-->
<div style="height:100px"></div>
</div>
</div>
此設置也適用於流體佈局。謝謝! 如果使用流體佈局,子跨度基於整行列數而不是父行列跨度。 此外,我相信這隻適用於流體類偏移的最新Twitter實現。 – user1318135