- Bootstrap 教程
- Bootstrap - 首页
- Bootstrap - 概述
- Bootstrap - 环境设置
- Bootstrap - RTL
- Bootstrap - CSS 变量
- Bootstrap - 色彩模式
- Bootstrap 布局
- Bootstrap - 断点
- Bootstrap - 容器
- Bootstrap - 网格系统
- Bootstrap - 列
- Bootstrap - 间距
- Bootstrap - 工具类
- Bootstrap - CSS 网格
- Bootstrap 组件
- Bootstrap - 手风琴
- Bootstrap - 警报
- Bootstrap - 徽章
- Bootstrap - 面包屑
- Bootstrap - 按钮
- Bootstrap - 按钮组
- Bootstrap - 卡片
- Bootstrap - 走马灯
- Bootstrap - 关闭按钮
- Bootstrap - 折叠
- Bootstrap - 下拉菜单
- Bootstrap - 列表组
- Bootstrap - 模态框
- Bootstrap - 导航栏
- Bootstrap - 导航和选项卡
- Bootstrap - 侧边栏
- Bootstrap - 分页
- Bootstrap - 占位符
- Bootstrap - 气泡提示
- Bootstrap - 进度条
- Bootstrap - 滚动监听
- Bootstrap - 加载动画
- Bootstrap - 吐司提示
- Bootstrap - 工具提示
- Bootstrap 表单
- Bootstrap - 表单
- Bootstrap - 表单控件
- Bootstrap - 选择框
- Bootstrap - 复选框和单选框
- Bootstrap - 范围滑块
- Bootstrap - 输入组
- Bootstrap - 浮动标签
- Bootstrap - 布局
- Bootstrap - 验证
- Bootstrap 辅助工具
- Bootstrap - 清除浮动
- Bootstrap - 颜色和背景
- Bootstrap - 彩色链接
- Bootstrap - 焦点环
- Bootstrap - 图标链接
- Bootstrap - 定位
- Bootstrap - 比例
- Bootstrap - 堆叠
- Bootstrap - 拉伸链接
- Bootstrap - 文本截断
- Bootstrap - 垂直线
- Bootstrap - 视觉隐藏
- Bootstrap 工具类
- Bootstrap - 背景
- Bootstrap - 边框
- Bootstrap - 颜色
- Bootstrap - 显示
- Bootstrap - Flexbox
- Bootstrap - 浮动
- Bootstrap - 交互
- Bootstrap - 链接
- Bootstrap - 对象适配
- Bootstrap - 不透明度
- Bootstrap - 溢出
- Bootstrap - 定位
- Bootstrap - 阴影
- Bootstrap - 尺寸
- Bootstrap - 间距
- Bootstrap - 文本
- Bootstrap - 垂直对齐
- Bootstrap - 可见性
- Bootstrap 演示
- Bootstrap - 网格演示
- Bootstrap - 按钮演示
- Bootstrap - 导航演示
- Bootstrap - 博客演示
- Bootstrap - 滑块演示
- Bootstrap - 走马灯演示
- Bootstrap - 标题演示
- Bootstrap - 页脚演示
- Bootstrap - 英雄区域演示
- Bootstrap - 特色区域演示
- Bootstrap - 侧边栏演示
- Bootstrap - 下拉菜单演示
- Bootstrap - 列表组演示
- Bootstrap - 模态框演示
- Bootstrap - 徽章演示
- Bootstrap - 面包屑演示
- Bootstrap - 特大标题演示
- Bootstrap - 粘性页脚演示
- Bootstrap - 相册演示
- Bootstrap - 登录演示
- Bootstrap - 定价演示
- Bootstrap - 结账演示
- Bootstrap - 产品演示
- Bootstrap - 封面演示
- Bootstrap - 仪表盘演示
- Bootstrap - 粘性页脚导航栏演示
- Bootstrap - 砌体布局演示
- Bootstrap - 启动模板演示
- Bootstrap - 相册 RTL 演示
- Bootstrap - 结账 RTL 演示
- Bootstrap - 走马灯 RTL 演示
- Bootstrap - 博客 RTL 演示
- Bootstrap - 仪表盘 RTL 演示
- Bootstrap 有用资源
- Bootstrap - 常见问题解答
- Bootstrap - 快速指南
- Bootstrap - 有用资源
- Bootstrap - 讨论
Bootstrap - 断点
本章将讨论 Bootstrap 断点。Bootstrap 断点帮助我们确定响应式布局如何在各种设备和视口尺寸上显示。
基本概念
Bootstrap 中的断点用于创建响应式设计。您可以在特定视口或设备尺寸下调整它们。
CSS 媒体查询允许我们根据浏览器和操作系统参数自定义样式。Bootstrap 中的媒体查询主要使用 min-width 来控制断点。
Bootstrap 的目标是移动优先的响应式设计。Bootstrap 创建移动友好的布局,使用最少的样式,并为更大的设备添加层级。它可以提高渲染速度,并为用户提供更好的观看体验。
断点类型
Bootstrap 提供六个默认断点,称为 网格层级。如果我们使用 Bootstrap 的 Sass 源文件,可以自定义这些断点。
断点 | 类后缀 | 尺寸 |
---|---|---|
超小 | 无 | <576px |
小 | sm | ≥576px |
中 | md | ≥768px |
大 | lg | ≥992px |
超大 | xl | ≥1200px |
特大 | xxl | ≥1400px |
这些断点涵盖了常见的设备尺寸和视口尺寸。这些 Bootstrap 断点可以使用 Sass 进行更改,如下所示
$grid-breakpoints: ( xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px );
媒体查询
Bootstrap 是以移动优先的方式开发的,因此使用 媒体查询 为其布局和界面创建明智的断点。最小视口宽度用于控制断点,这些断点会在视口更改时缩放元素。
最小宽度
min-width 媒体特征状态指定特定设备的最小屏幕宽度。在断点中设置 min-width 意味着 CSS 仅应用于宽度大于设备 min-width 的设备。
@include media-breakpoint-up(sm) { ... }
上述语法表示 CSS 将应用于大于 min-width 的设备,即小型设备(横向手机,576px 及以上)。
让我们看一个 min-width 媒体特征的用法示例。在这里,您将看到我们在宽度小于 768px 的设备上隐藏了一个 div。
示例
您可以使用 编辑和运行选项编辑并尝试运行此代码。
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap - Breakpoint</title> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"> </script> <style> .custom-class { display: none; } @media (min-width: 768px) { .custom-class { display: block; } @media (min-width: 768px) { .custom-class { display: block; } } </style> </head> <body> <h5>This block is visible on all devices</h5> <div class="container-fluid mt-2 "> <div class="row"> <div class="col-md-6 bg-warning p-3"> md-6 warning </div> </div> </div><br> <h5>This block is not visible for sm breakpoint but visible for other breakpoints</h5> <div class="container-fluid mt-2 custom-class"> <div class="row"> <div class="col-md-6 bg-warning p-3"> md-6 warning </div> </div> </div> </body> </html>
最大宽度断点
max-width 媒体特征状态指定特定设备的最大屏幕宽度。在断点中设置 max-width 意味着 CSS 仅应用于宽度小于媒体查询中提到的设备。
@include media-breakpoint-down(xl) { ... }
上述语法表示 CSS 将应用于大型设备(桌面电脑,小于 1200px)。
让我们看一个 max-width 媒体特征的用法示例
示例
您可以使用 编辑和运行选项编辑并尝试运行此代码。
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap - Breakpoint</title> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"> </script> <style> .custom-class { display: none; } @media (max-width: 767.98px) { .custom-class { display: block; } } </style> </head> <body> <h5>This block visible on all devices</h5> <div class="container-fluid mt-2"> <div class="row"> <div class="col-xxl-3 bg-primary text-black p-3"> xxl-3 primary </div> </div> </div> <h5>This block not visible all devices larger than sm</h5> <div class="container-fluid mt-2 custom-class"> <div class="row"> <div class="col-lg-6 bg-warning text-black p-3"> lg-6 warning </div> </div> </div> </body> </html>
单个断点
单个断点意味着使用媒体查询中的最小和最大断点宽度来定位特定的屏幕尺寸。
@include media-breakpoint-only(md) { ... }
上述语法表示 CSS 将应用于屏幕尺寸介于 @media (min-width: 768px) 和 (max-width: 991.98px) { ... } 之间的设备(即中等尺寸设备,如平板电脑、桌面电脑)。
断点之间
断点之间可以定位多个断点。
@include media-breakpoint-between(md, xl) { ... }
上述语法导致 @media (min-width: 892px) and (max-width: 1278px) { ... },这意味着样式从中等设备开始应用,一直到超大型设备。