Bootstrap 5 网格:超大型设备

超大型设备网格实例

XSmall Small Medium Large Extra Large XXL
类前缀 .col- .col-sm- .col-md- .col-lg- .col-xl- .col-xxl-
屏幕宽度 <576px >=576px >=768px >=992px >=1200px >=1400px

在前一章中,我们展示了一个网格实例,其中包含适用于小型、中型和大型设备的类。我们使用了两个 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>

但在 xlarge 设备上,20% / 80% 拆分的设计可能会更好。

超大设备被定义为屏幕宽度为 1200 像素及以上

对于 xlarge 设备,我们将使用 .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% 以及在 xlarge 和 xxlarge 上拆分 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>世界自然基金会(WWF),成立于1961年4月29日,其标志是一只大熊猫 ...</p>
    </div>
    <div class="col-sm-9 col-md-6 col-lg-8 col-xl-10">
      <p>1980年,WWF正式来到中国,受中国政府邀请来华开展大熊猫及其栖息地的保护工作 ...</p>
    </div>
  </div>
</div>

亲自试一试

注意:请确保总和始终为 12。

仅使用 XLarge

在下面的例子中,我们仅指定 .col-xl-6 类(没有 .col-lg-*.col-md-* 和/或 .col-sm-*)。这意味着 xlarge 和 xxlarge 设备将拆分 50%/50%。但是,对于大型、中型、小型和超小型设备,它将垂直堆叠(100% 宽度):

实例

<div class="container-fluid">
  <div class="row">
    <div class="col-xl-6">
      <p>世界自然基金会(WWF),成立于1961年4月29日,其标志是一只大熊猫 ...</p>
    </div>
    <div class="col-xl-6">
      <p>1980年,WWF正式来到中国,受中国政府邀请来华开展大熊猫及其栖息地的保护工作 ...</p>
    </div>
  </div>
</div>

亲自试一试

自动布局列

在 Bootstrap 5 中,有一种简单的方法可以为所有设备创建等宽的列:只需从 .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>

亲自试一试

目录