XSmall | Small | Medium | Large | Extra Large | XXL | |
---|---|---|---|---|---|---|
Class prefix | .col- |
.col-sm- |
.col-md- |
.col-lg- |
.col-xl- |
.col-xxl- |
Screen width | <576px | >=576px | >=768px | >=992px | >=1200px | >=1400px |
假设我们有一个包含两列的简单布局。对于小型设备,我们希望将列拆分 25%/75%。
小型设备被定义为屏幕宽度为576 像素至 767 像素。
对于小型设备,我们将使用.col-sm-*
类。
我们将以下类添加到我们的两列中:
<div class="col-sm-3">....</div>
<div class="col-sm-9">....</div>
以下示例将导致小型(以及中型、大型、xlarge 和 xxlarge)设备上的 25%/75% 分割。在超小型设备上,它将自动堆叠(100%):
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 bg-primary">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-9 bg-dark">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
亲自试一试 »
笔记:确保总和等于或小于 12(不需要使用所有 12 个可用列):
对于 33.3%/66.6% 的分割,您可以使用.col-sm-4
和.col-sm-8
(对于 50%/50% 的分割,您可以使用.col-sm-6
和.col-sm-6
):
<!-- 33.3/66.6% split: -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-4 bg-primary">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-8 bg-dark">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
<!-- 50%/50% split: -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 bg-primary">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-6 bg-dark">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
亲自试一试 »
在 Bootstrap 5 中,有一种简单的方法可以为所有设备创建等宽的列:只需删除其中的数字即可.col-sm-*
并且只使用.col-sm
指定数量的类山口元素。 Bootstrap 将识别有多少列,并且每列将获得相同的宽度。
如果屏幕尺寸是小于 576 像素,列将水平堆叠:
<!-- Two columns: 50% width on all screens, except for extra small (100% width) -->
<div class="row">
<div class="col-sm">1 of 2</div>
<div class="col-sm">2 of 2</div>
</div>
<!-- Four columns: 25% width on all screens, except for extra small (100% width)-->
<div class="row">
<div class="col-sm">1 of 4</div>
<div class="col-sm">2 of 4</div>
<div class="col-sm">3 of 4</div>
<div class="col-sm">4 of 4</div>
</div>
下一章介绍如何为中型设备添加不同的分割百分比。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!