断点(Breakpoints)
断点是可自定义的宽度,用于确定Bootstrap中如何跨设备或视口大小执行响应布局。
核心概念
-
断点是响应式设计的基石。使用它们可以控制何时可以在特定视口或设备大小下调整布局。
-
使用媒体查询通过断点构建CSS。媒体查询是CSS的一项功能,它允许您根据一组浏览器和操作系统参数有条件地应用样式。我们在媒体查询中最常用的是最小宽度。
-
移动第一,响应性设计是我们的目标。Bootstrap的CSS旨在应用最少的样式,使布局在最小的断点处工作,然后对样式进行分层,以便为更大的设备调整设计。这优化了您的CSS,提高了渲染时间,并为您的访问者提供了极好的体验。
可用断点
Bootstrap包括六个默认断点,有时称为网格层,用于响应地构建。如果您使用的是我们的源Sass文件,则可以自定义这些断点。
断点 | 类中缀 | 分辨率 |
---|---|---|
X-Small | None | <576px |
Small | sm |
≥576px |
Medium | md |
≥768px |
Large | lg |
≥992px |
Extra large | xl |
≥1200px |
Extra extra large | xxl |
≥1400px |
每个断点都被选择用来容纳宽度为12倍的容器。断点也代表了常见设备尺寸和视口尺寸的子集,它们并不是专门针对每个用例或设备的。相反,这些范围为几乎任何设备提供了坚固和一致的基础。
这些断点可以通过Sass进行自定义,您可以在我们网站的Sass地图中找到它们_variables.scss 样式表。
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px,
xxl: 1400px
);
有关如何修改Sass映射和变量的更多信息和示例,请参阅网格文档的Sass部分。
媒体查询
由于Bootstrap的开发首先是移动的,所以我们使用少量的媒体查询为我们的布局和接口创建合理的断点。这些断点主要基于最小视口宽度,允许我们在视口更改时放大元素。
最小宽度
Bootstrap主要使用源Sass文件中的以下媒体查询范围或断点来进行布局、网格系统和组件。
// Source mixins
// No media query necessary for xs breakpoint as it's effectively `@media (min-width: 0) { ... }`
@include media-breakpoint-up(sm) { ... }
@include media-breakpoint-up(md) { ... }
@include media-breakpoint-up(lg) { ... }
@include media-breakpoint-up(xl) { ... }
@include media-breakpoint-up(xxl) { ... }
// Usage
// Example: Hide starting at `min-width: 0`, and then show at the `sm` breakpoint
.custom-class {
display: none;
}
@include media-breakpoint-up(sm) {
.custom-class {
display: block;
}
}
这些Sass mixin使用Sass变量中声明的值在编译的CSS中进行转换。例如:
// X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }
// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }
// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }
最大宽度
We occasionally use media queries that go in the other direction (the given screen size or smaller):
// No media query necessary for xs breakpoint as it's effectively `@media (max-width: 0) { ... }`
@include media-breakpoint-down(sm) { ... }
@include media-breakpoint-down(md) { ... }
@include media-breakpoint-down(lg) { ... }
@include media-breakpoint-down(xl) { ... }
@include media-breakpoint-down(xxl) { ... }
// Example: Style from medium breakpoint and down
@include media-breakpoint-down(md) {
.custom-class {
display: block;
}
}
这些mixin获取那些声明的断点,从中减去.02px,并将它们用作我们的最大宽度值。例如:
// X-Small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) { ... }
// Small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) { ... }
// Medium devices (tablets, less than 992px)
@media (max-width: 991.98px) { ... }
// Large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) { ... }
// X-Large devices (large desktops, less than 1400px)
@media (max-width: 1399.98px) { ... }
// XX-Large devices (larger desktops)
// No media query since the xxl breakpoint has no upper bound on its width
单断点
还有媒体查询和mixin,用于使用最小和最大断点宽度针对单个屏幕大小段。
@include media-breakpoint-only(xs) { ... }
@include media-breakpoint-only(sm) { ... }
@include media-breakpoint-only(md) { ... }
@include media-breakpoint-only(lg) { ... }
@include media-breakpoint-only(xl) { ... }
@include media-breakpoint-only(xxl) { ... }
For example the @include media-breakpoint-only(md) { ... }
will result in :
@media (min-width: 768px) and (max-width: 991.98px) { ... }
断点之间
类似地,媒体查询可能跨越多个断点宽度:
@include media-breakpoint-between(md, xl) { ... }
结果是:
// Example
// 应用从中型设备到超大设备的样式
@media (min-width: 768px) and (max-width: 1199.98px) { ... }