flex-direction 改变主轴
默认是X为主轴从左到右 flex-dirceion:row
flex-dirction:row-revrese X轴为主轴,从右到左
flex-dirction:column 改Y为主轴从上到下
flex-dirction:column-revrese 从下到上
**justify-content:**设置主轴上子元素的排列方式
justify-content:center 在主轴上居中对齐
justify-content:space-around 均分剩余空间
justify-content:space-between 先两边贴边,再分剩余空间
felx布局中默认是不换行的,如果排不开就缩小子元素的宽度
flex-warp:warp
**align-items:**设置侧轴元素的排列
align-items:center 侧轴居中
align-content:当出现多行的情况是align-items就不管用了,需要用align-content
align-content:center 居中
align-content:space-between 两队对其
align-content:space-around 均分
flex-flow:复合写法