Bootstrap 4 容器
容器
在上一章节中我们了解到 Bootstrap 需要一个容器元素来包裹网站的内容。
我们可以使用以下两个容器类:
.container
类用于固定宽度并支持响应式布局的容器。.container-fluid
类用于 100% 宽度,占据全部视口(viewport)的容器。
.container
.container-fluid
固定宽度
.container
类用于创建固定宽度的响应式页面。
注意:宽度 (max-width
) 会根据屏幕宽度同比例放大或缩小:
超级小屏幕 <576px |
小屏幕 ≥576px |
中等屏幕 ≥768px |
大屏幕 ≥992px |
特大屏幕 ≥1200px |
|
---|---|---|---|---|---|
max-width | 100% | 540px | 720px | 960px | 1140px |
以下实例中,我们可以尝试调整浏览器窗口的大小来查看容器宽度在不同屏幕中的变化:
100% 宽度
.container-fluid
类用于创建一个全屏幕尺寸的容器,容器始终跨越整个屏幕宽度 (width
始终为 100%
):
实例
<div class="container-fluid">
<h1>我的第一个 Bootstrap 页面</h1>
<p>This is some text.</p>
</div>
亲自试一试 »
容器内边距
默认情况下,容器都有填充左右内边距,顶部和底部没有填充内边距。 Bootstrap 提供了一些间距类用于填充边距。 比如 .pt-3
就是用于填充顶部内边距:
在我们的 BS4 实用程序 一章中,您将了解更多有关间距的信息。
容器边框和颜色
其他实用程序(如边框和颜色)也经常与容器一起使用:
实例
我的第一个 Bootstrap 页面
这个容器有一个边框和一些额外的填充和边距。
我的第一个 Bootstrap 页面
此容器具有深色背景和白色文本,以及一些额外的填充和边距。
我的第一个 Bootstrap 页面
此容器具有蓝色背景色和白色文本,以及一些额外的填充和边距。
<div class="container p-3 my-3 border"></div>
<div class="container
p-3 my-3 bg-dark
text-white"></div>
<div class="container p-3 my-3 bg-primary
text-white"></div>
亲自试一试 »
响应式容器
你可以使用 .container-sm|md|lg|xl
类来创建响应式容器。
容器的 max-width
属性值会根据屏幕的大小来改变:
类 |
超级小屏幕 <576px |
小屏幕 ≥576px |
中等屏幕 ≥768px |
大屏幕 ≥992px |
特大屏幕 ≥1200px |
---|---|---|---|---|---|
.container-sm |
100% | 540px | 720px | 960px | 1140px |
.container-md |
100% | 100% | 720px | 960px | 1140px |
.container-lg |
100% | 100% | 100% | 960px | 1140px |
.container-xl |
100% | 100% | 100% | 100% | 1140px |
实例
<div class="container-sm">.container-sm</div>
<div
class="container-md">.container-md</div>
<div
class="container-lg">.container-lg</div>
<div
class="container-xl">.container-xl</div>
亲自试一试 »