Bootstrap网格 - 大型设备


Bootstrap 网格示例:大型设备

  Extra small Small Medium Large
Class prefix .col-xs .col-sm .col-md .col-lg
Screen width <768px >=768px >=992px >=1200px

在上一章中,我们介绍了一个包含中小型设备类的网格示例。我们使用了两个 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% 分割的设计可能会更好。

提示:大型设备被定义为屏幕宽度为1200像素及以上

对于大型设备,我们将使用.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 会显示"at the small size, look at classes with -sm- in them and use those. At the medium size, look at classes with -md- in them and use those. At the large size, look at classes with the word -lg- in them and use those"。

以下示例将导致小型设备上 25%/75% 的拆分、中型设备上 50%/50% 的拆分以及大型设备上 33%/66% 的拆分:

示例

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

笔记:确保总和始终为 12。


仅使用大

在下面的例子中,我们只指定.col-lg-6类(无.col-md-*和/或.col-sm-*)。这意味着大型设备将分成 50%/50%。但是,对于中型和小型设备,它将垂直堆叠(100% 宽度):

示例

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