Flex 小笔记
Posted Grace_Zhong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flex 小笔记相关的知识,希望对你有一定的参考价值。
Flex
- 设置为 flex
// 容器设置为 flex - 即容器内部元素 flex
display: flex;
// 行内元素 flex
display: inline-flex;
- 水平/竖直排列元素
flex-direction: row | row-reverse | column | column-reverse;
- 自动换行
flex-wrap: nowrap | wrap | wrap-reverse;
- 对齐方式
// 水平
justify-content: flex-start | flex-end | center | space-between | space-around;
// 垂直
align-items: flex-start | flex-end | center | baseline | stretch;
// 水平+垂直
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
// 单个元素对齐方式
align-self: auto | flex-start | flex-end | center | baseline | stretch;
- 元素排序 / 放大 / 缩小 / 占据主轴空间
// 元素排序: 数值越小,排列越靠前,默认为0。
order: <integer>;
// 元素放大
flex-grow: <number>; /* default 0 */
// 元素缩小
flex-shrink: <number>;
// 占据的主轴空间
flex-basis: <length> | auto; /* default auto */
- 简写
flex-flow: <flex-direction> || <flex-wrap>;
flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
以上是关于Flex 小笔记的主要内容,如果未能解决你的问题,请参考以下文章