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 网格 - 小型设备


Bootstrap 网格示例:小型设备

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

假设我们有一个简单的布局,包含两列。我们希望这些列在小型设备上按 25%/75% 的比例分割。

提示: 小型设备定义为屏幕宽度在 768 像素到 991 像素之间的设备。

对于小型设备,我们将使用 .col-sm-* 类。

我们将向两列添加以下类

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

现在 Bootstrap 将会说 “在小型尺寸上,查找包含 -sm- 的类并使用它们”。

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

col-sm-3
col-sm-9

示例

<div class="container-fluid">
  <h1>Hello World!</h1>
  <div class="row">
    <div class="col-sm-3" style="background-color:yellow;">
      <p>Lorem ipsum...</p>
    </div>
    <div class="col-sm-9" style="background-color:pink;">
      <p>Sed ut perspiciatis...</p>
    </div>
  </div>
</div>
自己试试 »

注意: 确保总和始终加起来为 12。

对于 33.3%/66.6% 的分割,您将使用 .col-sm-4.col-sm-8

col-sm-4
col-sm-8

示例

<div class="container-fluid">
  <h1>Hello World!</h1>
  <div class="row">
    <div class="col-sm-4" style="background-color:yellow;">
      <p>Lorem ipsum...</p>
    </div>
    <div class="col-sm-8" style="background-color:pink;">
      <p>Sed ut perspiciatis...</p>
    </div>
  </div>
</div>
自己试试 »

下一章将展示如何为中型设备添加不同的分割百分比。


×

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.