💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# Flex 容器属性 [TOC] **容器属性汇总:** | 序号 | 属性 | 描述 | | :--: | :-------------- | :------------------------------------------------ | | 1 | flex-direction | 主轴方向(即项目排列方向) | | 2 | flex-wrap | 当多个项目在一行排列不下时,如何换行 | | 3 | flex-flow | flex-direction,flex-wrap 的简写,默认:`row nowrap` | | 4 | justify-content | 项目在主轴上对齐方式 | | 5 | align-items | 项目在交叉轴上的对齐方式 | | 6 | align-content | 项目在多根轴线上的对齐方式,只有一根轴线无效 | --- ## 1. flex-direction - **功能**: 决定项目在主轴上的排列方向 - 它有四个可能的值: | 序号 | 属性值 | 描述 | | ---- | -------------- | -------------------------------- | | 1 | row 默认值 | 主轴为水平方向,起点在左边 | | 2 | row-reverse | 主轴为水平方向, 起点在右边(反转) | | 3 | column | 主轴为垂直方向, 起点在上边 | | 4 | column-reverse | 主轴为垂直方向, 起点在下边 | - CSS 语法: ```css .container { display: flex; flex-direction: row | row-reverse | column | column-reverse; } ``` - 示意图: ![](https://box.kancloud.cn/0ac377493a33869f2829c4b1d3d70100_796x203.png) --- ## 2. flex-wrap - **功能**: 多个项目默认排列在一根轴线上,该属性定义了当一根轴线排列不下时,多作的项目的换行方式 | 序号 | 属性值 | 描述 | | ---- | ------------- | -------------------------------------------- | | 1 | nowrap 默认值 | 不换行 | | 2 | wrap | 自动换行, 第一行排列不下, 自动转到下一行 | | 3 | wrap-reverse | 自动反向换行, 第一行显示在下方, 与 wrap 相反 | ![](https://box.kancloud.cn/940f145a234cc9972dc232668bb96766_798x276.png) - CSS 语法 ```css .container { display: flex; flex-wrap: nowrap | wrap | wrap-reverse; } ``` - 属性值说明: - `nowrap`: (默认值)不换行 ![](https://box.kancloud.cn/7e8a06a9347193bcb4a969962ebfa3aa_700x145.png) - `wrap`: 自动换行 ![](https://box.kancloud.cn/6215cf568af888a6442517b68a2825d8_700x177.png) - `wrap-reverse`: 自动反向换行 ![](https://box.kancloud.cn/4a8a486060e81a05895277c987af5c96_700x177.png) --- ## 3. flex-flow flex-flow 属性是 flex-direction 属性和 flex-wrap 属性的简写形式,默认值为`row nowrap` ```css .container { display: flex; flex-flow: [flex-direction] || [flex-wrap]; /*默认*/ flex-flow: row nowrap; } ``` --- ## 4. justity-content - **功能**: 设置项目在主轴上的对齐方式 - CSS 语法: ```css .container { display: flex; justify-content: flex-start | flex-end | center | space-between | space-around; } ``` - 属性值说明 | 序号 | 属性值 | 描述 | | ---- | ----------------- | ------------------------------------------------- | | 1 | flex-start 默认值 | 左对齐 | | 2 | flex-end | 右对齐 | | 3 | center | 居中对齐 | | 4 | space-between | 两端对齐: 项目之间间隔相等 | | 5 | space-around | 项目两侧间隔相等,即项目之间间隔是项目到两端的二倍 | - 示意图: ![](https://box.kancloud.cn/b1beedefc6a3eb52960a682ad0121926_637x763.png) --- ## 5. align-items - **功能:** 该属性设置项目在交叉轴上的对齐方式 - CSS 语法: ```css .container { display: flex; align-items: flex-start | flex-end | center | baseline | stretch; } ``` - 属性值说明: | 序号 | 属性值 | 描述 | | ---- | -------------- | ------------------------------------------------------------ | | 1 | flex-start | 与交叉轴起点对齐, 即: 顶对齐 / 上对齐 | | 2 | flex-end | 与交叉轴终点对齐, 即: 底对齐 / 下对齐 | | 3 | center | 与交叉轴中间线对齐, 即: 居中对齐 | | 4 | baseline | 与项目中第一行文本的基线对齐, 即文本的下边线 | | 5 | stretch 默认值 | 自动伸展到容器的高度(项目未设置高度或将高度设置为 auto 有效) | - 示意图: ![](https://box.kancloud.cn/0ec9e81c35c66f66b23e724c6063fce8_617x786.png) --- ## 6. align-content - `align-items`和`align-content`有相同的功能,不过不同点是它是用来让每一个单行的容器居中而不是让整个容器居中 - `align-content`属性只适用于**多行**的 flex 容器,并且当交叉轴上有多余空间使 flex 容器内的 flex 线对齐 - `align-items`属性适用于所有的 flex 容器,它是用来设置每个 flex 元素在交叉轴上的默认对齐方式 - 该属性的重点,在于**多行项目**, 这是与`align-items`最重要的区别 - CSS 语法: ```css .container { display: flex; align-content: flex-start | flex-end | center | space-between | space-around | stretch; } ``` - 属性值说明: | 序号 | 属性值 | 描述 | | ---- | -------------- | ------------------------------------------- | | 1 | flex-start | 与交叉轴起点对齐 | | 2 | flex-end | 与交叉轴终点对齐 | | 3 | center | 与交叉轴中间点对齐 | | 4 | space-between | 与交叉轴两端对齐, 轴线之间间隔相等 | | 5 | sapce-around | 每根轴线间隔相等,轴线间隔比轴线到边框大一倍 | | 6 | stretch 默认值 | 轴线占满整个交叉轴 | - 示意图: ![](https://box.kancloud.cn/aade7abc9eb8c177c66d0128b1cc6ca9_620x786.png) --- ## 总结 ### 一个弹性盒子容器的默认状态如下: ```css .container { /*弹性布局*/ display: flex; /*以下弹性盒子容器全部属性以及默认值,即弹性盒子的默认状态*/ /*1. 主轴方向: 行(水平)*/ flex-direction: row; /*2. 多个项目换行方式: 不换行*/ flex-wrap: nowrap; /*3. 多个项目在主轴上的排列与换行方式的简写*/ flex-flow: row nowrap; /*4. 多个项目在主轴上的对齐方式: 左对齐*/ justify-content: flex-start; /*5. 多个项目在交叉轴上的对齐方式: 自动伸展到容器高度*/ align-items: stretch; /*6. 多个项目分为多行时, 在交叉轴上排列方式: 充满整个交叉轴*/ align-content: stretch; } ``` ### 属性总结: - 设置项目在主轴上的排列方向与换行方式 - `flex-direction`: 项目在主轴上的排列方向 - `flex-wrap`: 项目在主轴上的换行方式 - `flex-flow`: 以上属性的缩写,默认: `row nowrap` - 设置项目在主轴上的对齐方式 - `justity-content`: 项目在主轴上的对齐方式 - 设置项目在交叉轴上的对齐方式 - `align-items`: 适用于项目**单行**排列方式 - `align-content`: 适合于项目**多行**排列方式