Extra small | Small | Medium | Large | |
---|---|---|---|---|
Class prefix | .col-xs |
.col-sm |
.col-md |
.col-lg |
Screen width | <768px | >=768px | >=992px | >=1200px |
在上一章中,我们介绍了一个带有小型设备类的网格示例。我们使用了两个 div(列),并给它们分配了 25%/75% 的比例:
<div class="col-sm-3">....</div>
<div class="col-sm-9">....</div>
但在中型设备上,50%/50% 分割的设计可能会更好。
提示:中型设备定义为屏幕宽度为992 像素至 1199 像素。
对于中型设备,我们将使用.col-md-*
类。
现在我们将为中型设备添加列宽:
<div class="col-sm-3
col-md-6">....</div>
<div class="col-sm-9
col-md-6">....</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"。
以下示例将导致在小型设备上进行 25%/75% 的拆分,在中型(和大型)设备上进行 50%/50% 的拆分。在超小型设备上,它将自动堆叠(100%):
<div class="container-fluid">
<h1>Hello World!</h1>
<div class="row">
<div class="col-sm-3 col-md-6" style="background-color:yellow;">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-9 col-md-6" style="background-color:pink;">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
亲自试一试 »
笔记:确保总和始终为 12。
在下面的例子中,我们只指定.col-md-6
类(无.col-sm-*
)。这意味着中型和大型设备将分成 50%/50% - 因为类别会扩大。但是,对于小型设备,它将垂直堆叠(100% 宽度):
<div class="row">
<div class="col-md-6" style="background-color:yellow;">
<p>Lorem ipsum...</p>
</div>
<div class="col-md-6" style="background-color:pink;">
<p>Sed ut perspiciatis...</p>
</div>
</div>
亲自试一试 »
下一章介绍如何为大型设备添加不同的分割百分比。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!