flex 布局笔记
flex 布局详解
flex 使用
div{
display: flex;
}
- 此div便是flex容器.其内的所有子元素都是flex成员.整个为flex项目;
flex 容器属性
- flex-flow
- flex-direction
- flex-wrap
- justify-content
- align-items
- align-content
- flex-flow属性: 排列方向+ 换行
.box {
flex-flow: <flex-direction> || <flex-wrap>;
}
- flex-direction属性:排列方向;
.box {
flex-direction: row | row-reverse | column | column-reverse;
}
左至右(默认)/右至左/上至下/下至上
- flex-wrap属性:换行;
.box{
flex-wrap: nowrap | wrap | wrap-reverse;
}
不换行(默认)/新行从下左/新行上左
- justify-content属性:水平对齐;
.box {
justify-content: flex-start | flex-end | center | space-between | space-around;
}
左对齐(默认)/右对齐/居中/左右贴/左右平均间隔
- align-items属性:竖直对齐;
.box {
align-items: flex-start | flex-end | center | baseline | stretch;
}
垂直居上/垂直居下/垂直居中/第一行文字上对齐/拉伸(默认)
- align-content属性: 多行布局;
.box {
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
左上角/左下角/居中/上下贴/上下平均间隔/拉伸(默认)
flex 自身属性
- order
- flex
- flex-grow
- flex-shrink
- flex-basis
- align-self
- flex属性: 集成 放大/缩小/自定义大小属性
.item {
flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
}
属性快捷值: auto(1,1,auto) 和 none(0,0,auto) 和 默认(0,1,auto)
- order属性: 排序
.item {
order: <integer>;
}
数小靠前,默认0
- flex-grow属性: 放大比例;
.item {`
flex-grow: <number>; /* default 0 */
}
按比例平分剩余空间; 0的不扩展;
- flex-shrink属性: 缩小比例;
.item {
flex-shrink: <number>; /* default 1 */
}
按比例平分已有空间; 0 的不参与平分;
- flex-basis属性: 分配前大小;
.item {
flex-basis: <length> | auto; /* default auto */
}
自定大小;
- align-self属性: 单独修改竖直对齐的状态;
.item {
align-self: auto | flex-start | flex-end | center | baseline | stretch;
}
自动(默认)/居上/居下/居中/第一行文字对齐/拉伸
总结
使用步骤
- 定义: 使DOM元素成为弹性盒子;
div {
display:flex;
}
- 定位: 确定排列的方向和是否换行;
div{
display:flex;
flex-flow: row wrap:
}
- 布局: 确定主轴行列的布置方式;
div{
display:flex;
flex-flow:column nowrap;
justify-content: space-between;
align-items: baseline;
}
- 布局: 当多行时,应使用多行的布置方式;
div{
display:flex;
flex-flow:row-reverse wrap;
justify-content: space-around;
align-content: space-around;
}
- 布局: 当修改某一个单元值时,使用其特有的布置;
div{
display:flex;
flex-flow:column-reverse wrap-reverse;
justify-content: center;
align-content: stretch;
}
.item{
align-self: baseline;
}
- 布局: 当确定单行时,单位设定伸缩方式;
div{
display:flex;
flex-flow:row nowrap;
justify-content: center;
align-content: center;
}
.item {
align-self: flex-end;
flex: 1 1 auto;
}
- 布局: 有时候可以指定顺序;
div{
display:flex;
flex-flow:row nowrap;
justify-content: center;
align-content: center;
}
.item {
align-self: flex-end;
flex: 1 1 auto;
order: 3;
}