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 4 网格 中等


中等网格示例

  超小 中等 超大
类前缀 .col- .col-sm- .col-md- .col-lg- .col-xl-
屏幕宽度 <576px >=576px >=768px >=992px >=1200px

在上一章中,我们展示了一个针对小型设备的网格示例。我们使用了两个 div(列),并分别分配了 25%/75% 的宽度。

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

但在中等设备上,50%/50% 的分配可能更适合。

中等设备是指屏幕宽度在 768 像素到 991 像素之间的设备。

对于中等设备,我们将使用 .col-md-*

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

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

以下示例将在小型设备上产生 25%/75% 的分配,并在中等(以及大尺寸和超大尺寸)设备上产生 50%/50% 的分配。在超小型设备上,它将自动堆叠(100%)

.col-sm-3 .col-md-6
.col-sm-9 .col-md-6

示例

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

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

仅使用中等

在下面的示例中,我们只指定了 .col-md-6 类(没有 .col-sm-*)。这意味着中等、大尺寸和超大尺寸设备将以 50%/50% 的比例分配 - 因为该类会向上扩展。但是,对于小型和超小型设备,它将垂直堆叠(100% 宽度)

示例

<div class="row">
  <div class="col-md-6">
    <p>Lorem ipsum...</p>
  </div>
  <div class="col-md-6">
    <p>Sed ut perspiciatis...</p>
  </div>
</div>
自己试试 »

自动布局列

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

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

<!-- 两列:中等及以上设备 50% 宽度-->
<div class="row">
  <div class="col-md">1 of 2</div>
  <div class="col-md">2 of 2</div>
</div>

<!-- 四列:中等及以上设备 25% 宽度 -->
<div class="row">
  <div class="col-md">1 of 4</div>
  <div class="col-md">2 of 4</div>
  <div class="col-md">3 of 4</div>
  <div class="col-md">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.