- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - flexbox
Flexbox 沿单一维度组织容器内的元素,该维度可以水平对齐,也可以垂直对齐。
什么是 CSS Flexbox?
CSS flexbox 是 CSS 中的一种布局模型,它提供了一种高效且灵活的方式来安排和分配容器内项目之间的空间。它在容器内水平或垂直地将元素排列在单一维度中。
在本文中,我们将简要介绍用于管理沿主轴和十字轴的元素之间的定位、对齐和间隙的所有属性。
Flexbox 的元素
- 弹性盒容器:flex 容器定义了 flexbox 的外部元素,其中所有子元素都存在。可以通过设置 'display: flex' 或 'display: inline-flex' 来定义 flexbox 容器。
- 弹性盒项目:Flexbox 项是 flexbox 容器的直接子项。这些物品可以根据需要在 flexbox 容器内垂直和水平排列。
- 主轴:主轴是主轴,物品沿着主轴排列在容器中。默认情况下,这是水平轴。
- 十字轴:>十字轴是垂直于主轴的轴。默认情况下,这是垂直轴。
下图将演示 CSS Flexbox:
基本 Flexbox 布局
Flexbox 通常用于创建响应式 Flexbox 布局。
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 100vh;
}
.item {
background-color: lightcoral;
padding: 20px;
margin: 10px;
border: 3px solid #ccc;
}
</style>
</head>
<body>
<div class="container">
<div class="item">Item 1</div>
<div class="item">Item 2</div>
<div class="item">Item 3</div>
</div>
</body>
</html>
垂直 Flexbox 布局
在 CSS 中,我们还可以通过设置 'flex-direction: column' 来定义垂直 flexbox。
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.item {
background-color: lightseagreen;
padding: 20px;
margin: 10px;
border: 3px solid #ccc;
}
</style>
</head>
<body>
<div class="container">
<div class="item">Item 1</div>
<div class="item">Item 2</div>
<div class="item">Item 3</div>
</div>
</body>
</html>
Flexbox Justify Content 属性
“justify-content”属性通常在 flexbox 容器内部使用,用于对齐容器内的 flexbox 项。此属性可能有多个值,有关对齐内容属性的完整参考,请访问我们的 对齐内容属性 教程。
下面记录了 justify-content 的一些常用值。与它相关的值还有很多。
// Align Item at center of main axis
justify-content: center;
// Align Item at start of main axis
justify-content: flex-start;
// Align Item at end of main axis
justify-content: flex-end;
// Align Item at left side of main axis
justify-content: left;
// Align Item at right side of main axis
justify-content: right;
Flexbox 对齐项目属性
CSS 中的 'align-items' 属性用于在容器的十字轴(行布局中的垂直轴,列布局中的水平轴)对齐 flex 项。有几个值与此属性相关联。要了解有关 'align-items' 属性的更多信息,请访问我们的 CSS 对齐项目 教程。
// Align items at start of cross axis of container
align-items: flex-start;
// Align items at end of cross axis of container
align-items: flex-end;
// Align items at center of cross axis of container
align-items: center;
// Align baselines of items (For items with variable sizes)
align-items: baseline;
// Stretch items along cross axis to fill container
align-items: stretch;
使用 Flexbox 将 Div 居中
在 CSS 中,居中 div 元素(或任何其他元素)始终是一个具有挑战性且讨论最多的问题。借助 CSS flexbox,我们可以轻松地将 div 元素居中到容器内。我们必须使用 'justify-content' 和 'align-items' 属性来居中项目,以下代码显示了如何完成此操作。
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.flex-container {
display: flex;
/* Center horizontally */
justify-content: center;
/* Center Vertically */
align-items: center;
border: 1px solid #ccc;
height: 250px;
background-color: grey;
}
.flex-item {
background-color: lightblue;
border: 1px solid #333;
padding: 5px;
height: 70px;
width: 70px;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="flex-item">
This div is in center of container
</div>
</div>
</body>
</html>
Flexbox Wrap 属性
具有 wrap 属性的 Flexbox 允许容器中的项目在单行中没有足够的空间时移动到下一行。这有助于保持响应式布局。
以下代码演示如何使用 flexbox 创建响应式布局,该布局将其项居中并包裹它们以适应可用空间。有关 flex wrap 的完整指南,请访问我们的 CSS flex-wrap 教程。
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.item {
padding: 20px;
margin: 10px;
/* base size 100px */
flex: 1 1 100px;
}
Flexbox Align Self 属性
在 CSS 中,我们有 'align-self' 属性,可用于覆盖容器上设置的 'align-items' 属性。这有助于将每个物品动态地放置在容器内的特殊位置。
以下代码演示如何使用“align-self”属性。在这里我们可以看到 'align-items: stretch' 不适用于第二和第三项,此属性被 items 的 'align-self' 属性覆盖。
.container {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: stretch;
height: 250px;
}
.item {
background-color: lightpink;
padding: 20px;
margin: 10px;
border: 1px solid #ccc;
}
.item:nth-child(2) {
/* Center 2nd item along the cross axis */
align-self: center;
}
.item:nth-child(3) {
/* Align 3rd item at the end of the cross axis */
align-self: flex-end;
}
CSS Flexbox 容器属性
以下是可以应用于 flex 容器的所有 CSS 属性。
属性 | 值 |
---|---|
flex-direction | 设置弯曲项的弯曲方向。 |
flex-wrap | 设置 flex 项是否应换行到下一行 |
justify-content | 设置弯曲项目沿主轴的对齐方式。 |
align-items | 设置弯曲项目沿十字轴的对齐方式。 |
align-content | 设置 Flex 容器内 Flex 线的对齐方式和间距。 |
flex-flow | 设置 flex-direction 和 flex-wrap 属性。 |
CSS Flexbox 项目属性
以下是可以应用于 flex 项目的所有 CSS 属性。
属性 | 值 |
---|---|
flex-grow | 设置 flex 项在 flex 容器中增长。 |
flex-shrink | 设置弹性项目以缩小大小以适应可用空间。 |
flex-basis | 设置 Flex 项的初始大小。 |
flex | 简写属性,结合了三个与 flex 相关的属性:flex-grow、flex-shrink 和 flex-basis。 |
align-self | 设置特定弯曲项目沿十字轴的对齐方式。 |
order | 用于指定 flex 项在其 flex 容器内的显示顺序。 |