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% 的比例,在大设备上分配了 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%)

col-sm-3 col-md-6 col-lg-4 col-xl-2
col-sm-9 col-md-6 col-lg-8 col-xl-10

示例

<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 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>
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.