基于12列柵格化格子系統(tǒng) ,4種分辨率響應
為您靈活的打造網(wǎng)頁的排版結構體系。
默認12列的單元格柵格系統(tǒng)
先寫一行class="row"
,行的里面寫列(即格子系統(tǒng))class="gird"
1~12的英文單詞被作為了柵格系統(tǒng)的12列格子的命名。
<div class="row">
<div class="col5 "> <!--內容--> </div>
<div class="col4 "> <!--內容--> </div>
</div>
可以通過 .fill*
的寫法讓 col12列柵格系統(tǒng)列發(fā)生偏移,例如 .fill1
將會讓列往右偏移1個格子的寬度。
<div class="row">
<div class="col4 fill1"> <!--內容--> </div>
<div class="col4 "> <!--內容--> </div>
</div>
fill1
fill2
fill3
fill4
fill5
fill6
fill7
fill8
實現(xiàn)柵格系統(tǒng)的多重嵌套 嵌套依然先寫一行class="row"
<div class="row">
<div class="col6 ">
<div class="row">
<div class="col3">
<!--內容-->
</div>
<div class="col3">
<!--內容-->
</div>
</div>
</div>
<div class="col3 ">
<!--內容-->
</div>
</div>
100%百分比格子系統(tǒng),應使用者要求,新增了百分比的柵格系統(tǒng),此演示僅為拋石引玉,百分比柵格系統(tǒng)經(jīng)過測試在實際應用中還有很多問題需要解決,我們期待與使用者一同探討解決!項目使用需謹慎! .row-flow
<div class="row row-flow"> <!--內容--> </div>
設置了顯示與隱藏類,可以用于在不設置元素在不同設備下的顯示與隱藏
show-pc, show-pad, show-phone, hide-pc,hide-pad, hide-phone
更多建議: