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 网格 叠放转横向


Bootstrap 4 网格示例:叠放转横向

我们将创建一个基本的网格系统,它在超小型设备上以叠放方式显示,而在较大的设备上则以横向方式显示。

以下示例展示了一个简单的“叠放转横向”双列布局,这意味着它将在所有屏幕上都呈现 50%/50% 的分割,除了超小型屏幕,它将自动叠放(100%)。

col-sm-6
col-sm-6

示例:叠放转横向

<div class="container">
  <div class="row">
    <div class="col-sm-6 bg-success">
      <p>Lorem ipsum...</p>
    </div>
    <div class="col-sm-6 bg-warning">
      <p>Sed ut perspiciatis...</p>
    </div>
  </div>
</div>
动手试试 »

提示:.col-sm-* 类中的数字表示 div 应该跨越多少列(共 12 列)。因此,.col-sm-1 跨越 1 列,.col-sm-4 跨越 4 列,.col-sm-6 跨越 6 列,等等。

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

提示:可以通过将 .container 类更改为 .container-fluid,将任何固定宽度布局转换为**全宽度**布局。

示例:流体容器

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

自动布局列

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

<!-- 两列:所有屏幕上宽度为 50%,除了超小型屏幕(宽度为 100%) -->
<div class="row">
  <div class="col-sm">1 of 2</div>
  <div class="col-sm">2 of 2</div>
</div>

<!-- 四列:所有屏幕上宽度为 25%,除了超小型屏幕(宽度为 100%)-->
<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>
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.