Bootstrap 4 网格 - 特大
特大网格示例
超小 | 小 | 中 | 大 | 特大 | |
---|---|---|---|---|---|
类前缀 | .col- |
.col-sm- |
.col-md- |
.col-lg- |
.col-xl- |
屏幕宽度 | <576px | >=576px | >=768px | >=992px | >=1200px |
在上一章中,我们展示了一个包含小尺寸和中尺寸设备类的网格示例。我们使用了两个 div(列),并为它们在小尺寸设备上分配了 25%/75% 的分割,在中尺寸设备上分配了 50%/50% 的分割,在大型设备上分配了 33%/66% 的分割
<div class="col-sm-3 col-md-6 col-lg-4">....</div>
<div class="col-sm-9 col-md-6 col-lg-8">....</div>
但在特大尺寸设备上,设计可能更适合 20%/80% 的分割。
特大尺寸设备的定义是屏幕宽度从 **1200 像素及以上**。
对于特大尺寸设备,我们将使用 .col-xl-*
类
<div class="col-sm-3 col-md-6 col-lg-4 col-xl-2">....</div>
<div class="col-sm-9 col-md-6 col-lg-8 col-xl-10">....</div>
以下示例将在小尺寸设备上实现 25%/75% 的分割,在中尺寸设备上实现 50%/50% 的分割,在大型设备上实现 33%/66% 的分割,在特大尺寸设备上实现 20%/80% 的分割。在超小尺寸设备上,它将自动堆叠(100%)
示例
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-6 col-lg-4 col-xl-2">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-9 col-md-6 col-lg-8 col-xl-10">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
亲自试一试 »
注意:确保总和始终加起来为 12。
仅使用特大
在下面的示例中,我们只指定了 .col-xl-6
类(没有 .col-lg-*
、.col-md-*
和/或 .col-sm-*
)。这意味着特大尺寸设备将以 50%/50% 的比例分割。但是,对于大型、中型、小型和超小尺寸设备,它将垂直堆叠(100% 宽度)
示例
<div class="container-fluid">
<div class="row">
<div class="col-xl-6">
<p>Lorem ipsum...</p>
</div>
<div class="col-xl-6">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
亲自试一试 »
自动布局列
在 Bootstrap 4 中,有一种简单的方法可以为所有设备创建等宽列:只需从 .col-xl-*
中删除数字,并在指定数量的 **col 元素** 上使用 .col-xl
类。Bootstrap 将识别有多少列,并且每列都将获得相同的宽度。
如果屏幕尺寸 **小于 1200px**,则列将水平堆叠
<!-- 两列:特大尺寸及以上 50% 宽度 -->
<div class="row">
<div class="col-xl">1 of 2</div>
<div class="col-xl">2 of 2</div>
</div>
<!-- 四列:特大尺寸及以上 25% 宽度 -->
<div class="row">
<div class="col-xl">1 of 4</div>
<div class="col-xl">2 of 4</div>
<div class="col-xl">3 of 4</div>
<div class="col-xl">4 of 4</div>
</div>