Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Bootstrap 5 网格 大尺寸


大尺寸网格示例

  极小尺寸 小尺寸 中尺寸 大尺寸 极大尺寸 XXL 尺寸
类前缀 .col- .col-sm- .col-md- .col-lg- .col-xl- .col-xxl-
屏幕宽度 <576px >=576px >=768px >=992px >=1200px >=1400px

在上一章中,我们展示了一个网格示例,其中包含用于小尺寸和中尺寸设备的类。我们使用了两个 div(列),并在小尺寸设备上分配了 25%/75% 的比例,而在中尺寸设备上分配了 50%/50% 的比例

<div class="col-sm-3 col-md-6">....</div>
<div class="col-sm-9 col-md-6">....</div>

但在大型设备上,设计可能更适合 33%/66% 的比例。

大型设备被定义为屏幕宽度在 **992 像素到 1199 像素** 之间。

对于大型设备,我们将使用 .col-lg-*

<div class="col-sm-3 col-md-6 col-lg-4">....</div>
<div class="col-sm-9 col-md-6 col-lg-8">....</div>

现在 Bootstrap 会说“在小尺寸时,查看包含 **-sm-** 的类并使用它们。在中尺寸时,查看包含 **-md-** 的类并使用它们。在大型尺寸时,查看包含 **-lg-** 的类并使用它们。”

以下示例将在小尺寸设备上产生 25%/75% 的比例,在中尺寸设备上产生 50%/50% 的比例,以及在大型、极大型和 XXL 尺寸设备上产生 33%/66% 的比例。在极小尺寸设备上,它将自动堆叠(100%)

.col-sm-3 .col-md-6 .col-lg-4
.col-sm-9 .col-md-6 .col-lg-8

示例

<div class="container-fluid">
  <div class="row">
    <div class="col-sm-3 col-md-6 col-lg-4">
      <p>Lorem ipsum...</p>
    </div>
    <div class="col-sm-9 col-md-6 col-lg-8">
      <p>Sed ut perspiciatis...</p>
    </div>
  </div>
</div>
自己动手试一试 »

注意:确保总和加起来不超过 12(不必使用所有 12 个可用列)


仅使用大型尺寸

在下面的示例中,我们只指定了 .col-lg-6 类(不包含 .col-md-* 和/或 .col-sm-*)。这意味着大型、极大型和 XXL 尺寸设备将以 50%/50% 的比例进行分割。但是,对于中尺寸、小尺寸和极小尺寸设备,它将垂直堆叠(100% 宽度)

示例

<div class="container-fluid">
  <div class="row">
    <div class="col-lg-6">
      <p>Lorem ipsum...</p>
    </div>
    <div class="col-lg-6">
      <p>Sed ut perspiciatis...</p>
    </div>
  </div>
</div>
自己动手试一试 »


自动布局列

在 Bootstrap 5 中,有一种简单的方法可以为所有设备创建等宽列:只需从 .col-lg-* 中删除数字,并在指定数量的 **col 元素** 上只使用 .col-lg 类。Bootstrap 将识别有多少列,每列将获得相同的宽度。

如果屏幕尺寸 **小于 992px**,列将水平堆叠

<!-- 两列:大型尺寸及以上 50% 宽度 -->
<div class="row">
  <div class="col-lg">1 of 2</div>
  <div class="col-lg">2 of 2</div>
</div>

<!-- 四列:大型尺寸及以上 25% 宽度 -->
<div class="row">
  <div class="col-lg">1 of 4</div>
  <div class="col-lg">2 of 4</div>
  <div class="col-lg">3 of 4</div>
  <div class="col-lg">4 of 4</div>
</div>
1 of 2
2 of 2

1 of 4
2 of 4
3 of 4
4 of 4
自己动手试一试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.