Foundation 网格 - 大型设备

大型设备的屏幕尺寸定义大于 64.0625 em , 在大型设备上我们推荐的比例为 33% / 66%

大型设备上使用.large-*

比如我们要在大型设备上添加两列

<div class="small-3 medium-6 large-4 columns">....</div>
<div class="small-9 medium-6 large-8 columns">....</div>
  • 小型设备两个列的比例为 25% / 75% ( .small-3.small-9 )
  • 中型设备两个列的比例为 50% / 50% ( .medium-6.medium-6 )
  • 大型设备两个列的比例为 33% / 66% ( .large-4.large-8 )

注意 : 要保证数列加起来是 12 列

<div class="row">
    <div class="small-3 medium-6 large-4 columns" style="background-color:yellow;">
        <p>简单教程</p>
    </div>
    <div class="small-9 medium-6 large-8 columns" style="background-color:pink;">
        <p>简单教程</p>
    </div>
</div>

运行范例 »

仅在大型设备上使用

下面的代码指定了 .large-6 类 (没有 .medium-*.small-* )

这样在大型设备上比例为 50% / 50%,但在中型或小型设备上会水平堆叠 (100% 宽度)

<div class="row">
    <div class="large-6 columns" style="background-color:yellow;">
        <p>简单教程</p>
    </div>
    <div class="large-6 columns" style="background-color:pink;">
        <p>简单教程</p>
    </div>
</div>

运行范例 »

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.