flex弹性布局
定义: Flex
布局的元素,称为 Flex
容器(flex container),简称"容器"。它的所有子元素自动成为容器成员,称为 Flex
项目
容器默认存在两根轴:水平的主轴( main axis
)和垂直的交叉轴( cross axis
)。
主轴的开始位置(与边框的交叉点)叫做 main start
,结束位置叫做 main end
;交叉轴的开始位置叫做 cross start
,结束位置叫做 cross end
。
项目默认沿主轴排列。单个项目占据的主轴空间叫做 main size
,占据的交叉轴空间叫做 cross size
。
弹性布局如何使用:只需要给容器设置 display:flex
容器属性
.box { flex-direction: row | row-reverse | column | column-reverse; }
row row-reverse column column-reverse
<style> ul:nth-of-type(1){ flex-direction:row;} ul:nth-of-type(2){ flex-direction:row-reverse;} ul:nth-of-type(3){ flex-direction:column;} ul:nth-of-type(4){ flex-direction:column-reverse;} </style>
.box { flex-wrap : nowrap| wrap | wrap-reverse ; }
nowrap wrap wrap-reverse
<style> ul:nth-of-type(1){flex-wrap:nowrap;} ul:nth-of-type(2){flex-wrap:wrap;} ul:nth-of-type(3){flex-wrap:wrap-reverse;} </style>
.box { justify-content: flex-start | flex-end | center | space-between | space-around; }
flex-start flex-end center space-between space-around
<style> ul:nth-of-type(1){justify-content:flex-start;} ul:nth-of-type(2){justify-content:flex-end;} ul:nth-of-type(3){justify-content:center;} ul:nth-of-type(4){justify-content:space-between;} ul:nth-of-type(5){justify-content:space-around;} </style>
.box { align-items: flex-start | flex-end | center | baseline | stretch;}
flex-start flex-end center baseline stretch
<style> ul:nth-of-type(1){align-items:flex-start;} ul:nth-of-type(2){align-items:flex-end;} ul:nth-of-type(3){align-items:center;} ul:nth-of-type(4){align-items:baseline;} ul li{ height:auto;} ul:nth-of-type(5){align-items:stretch;} </style>
align-content
属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。
.box {align-content: flex-start | flex-end | center | space-between | space-around | stretch;}
flex-start flex-end center space-between space-around stretch
<style> ul:nth-of-type(1){ flex-wrap:wrap; align-content:flex-start;} ul:nth-of-type(2){ flex-wrap:wrap; align-content:flex-end;} ul:nth-of-type(3){ flex-wrap:wrap; align-content:center;justify-content:center;} ul:nth-of-type(4){ flex-wrap:wrap; align-content:space-between;} ul:nth-of-type(5){ flex-wrap:wrap; align-content:space-around;} ul li{ height:auto;} ul:nth-of-type(6){ flex-wrap:wrap;align-content: stretch; justify-content:center;} </style>
简写方式:
flex-flow
:
flex-flow
属性是 flex-direction
属性和 flex-wrap
属性的简写形式,默认值为 row nowrap
。 .
box {flex-flow: <flex-direction> || <flex-wrap>;}
项目属性
order
属性定义项目的排列顺序。数值越小,排列越靠前,默认为 0
。
.item {order: <integer>;}
<style> ul li:nth-of-type(3){order:1;} ul li:nth-of-type(2){order:2;} ul li:nth-of-type(1){order:3;} ul li:nth-of-type(5){order:4;} ul li:nth-of-type(4){order:5;} </style>
flex-grow
属性定义项目的放大比例,默认为 0
,即如果存在剩余空间,也不放大。 如果所有项目的 flex-grow
属性都为 1
,则它们将等分剩余空间(如果有的话)。如果一个项目的 flex-grow
属性为 2
,其他项目都为 1
,则前者占据的剩余空间将比其他项多一倍。
.item { flex-grow: <number>; /* default 0 *