Foundation Chinese Manual
/ Foundation 網(wǎng)格 - 小型設備
Foundation 網(wǎng)格 - 小型設備
假設我們在小型設備上有一個簡單的網(wǎng)格布局,兩列,寬度比例為 25% 和 75%。
提示: 小型設備的定義是屏幕小于 40.0625em
。
小型設備上我們使用 .small-*
類。
<div class="small-3 columns">....</div> <div class="small-9 columns">....</div>
以下實例設置了兩個列,比例為 25% 和 75% (Foundation 是移動優(yōu)先: 如果沒有特別說明,在大型設備上會繼承 .small 類的代碼):.small
in them and use those".
實例
<!DOCTYPE html> <html> <head> <title>Foundation 實例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css"> <script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script> </head> <body> <div class="row"> <h2>Foundation 網(wǎng)格</h2> <p>25%/75% 比例。</p> <p>重置瀏覽器窗口大小查看效果。</p> <div class="small-3 columns" style="background-color:yellow;"> <p>php中文網(wǎng)</p> </div> <div class="small-9 columns" style="background-color:pink;"> <p>php中文網(wǎng)</p> </div> </div> </body> </html>
運行實例 ?
點擊 "運行實例" 按鈕查看在線實例
![]() | 注意: 要保證數(shù)列加起來是 12 列! |
---|
如果需要設置 33.3%/66.6% 的比例,你可以使用 .small-4
和 .small-8
:
實例
<!DOCTYPE html> <html> <head> <title>Foundation 實例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css"> <script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script> </head> <body> <div class="row"> <h2>Foundation 網(wǎng)格</h2> <p>33.3%/66.6% 比例。</p> <p>重置瀏覽器窗口大小查看效果。</p> <div class="small-4 columns" style="background-color:yellow;"> <p>php中文網(wǎng)</p> </div> <div class="small-8 columns" style="background-color:pink;"> <p>php中文網(wǎng)</p> </div> </div> </body> </html>
運行實例 ?
點擊 "運行實例" 按鈕查看在線實例