容器属性
flex-direction 决定主轴的方向row | row-reverse | column | column-reverse
flex-wrap 轴线nowrap | wrap | wrap-reverse 不换行,第一行在上,第一行在下
flex-flow 是 flex-direction 和 flex-wrap 的简写形式flex-flow: <flex-direction> || <flex-wrap>;
/* 水平方向 */ |
/* 垂直方向 */ |
to do |
flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap
子容器属性
flex-grow : 0; /* 索取剩余空间 */ |
1、剩余空间=父容器空间-子容器1.flex-basis/width - 子容器2.flex-basis/width
2、超出父容器,就走压缩 flex-shrink,否则走flex-grow
3、容器在任何时候都不被压缩f lex-shrink: 0
4、子容器flex-basis 为 0, 那么计算剩余空间的时候将不会为子容器预留空间
5、子容器flex-basis 为 auto, 那么计算剩余空间的时候将会根据子容器内容的多少来预留空间
align-selfflex-start | flex-end | center | stretch
它允许项目中当个item和其他itemsyou不一样的对齐方式,会覆盖alignitems的属性
参考地址 https://css-tricks.com/snippets/css/a-guide-to-flexbox/
https://github.com/baiwenhao/flex.git
https://www.w3cplus.com/css3/flexbox-layout-and-calculation.html