标签:order 基线 分享 定位 没有 设备 思想 etc 浮动
一· 何为弹性布局
flex-direction—— 决定主轴的方向。
flex-direction: row|row-reverse|column|column-reverse
flex-wrap——项目排列是否换行
flex-wrap:nowrap|wrap|wrap=reverse
flex-flow——是 flex-direction 和 flex-wrap 的简写形式
flex-flow:<flex-dirextin>||<flex-wrap> /* defalut row wrap */
justify-content——定义项目在主轴上的对齐方式
justify-content: flex-start|flex-end|center|space-between|space=around
align-items——定义交叉轴上的对齐方式。
align-items:stretchs|flex-start|flex-end|center|baseline
对齐方式和交叉轴的方向有关,下面是crorss-start在上方的情况。
align-content——定义多根轴线对齐方式,一根轴线,该属性不起作用。
align-content: stretch|flex-start|flex-end|center|space-between|space-around
stretch: 轴线占满整个交叉轴;
order——定义项目视觉顺序。项目在html的顺序是不会改变的。值为 整数,越小越靠前,默认为 0。不给出 order 的值,按照HTML的顺序显示。
order: <integer>;
flex-grow——定义项目放大比率。默认为0,剩余空间足够,也不放大,负数无效。剩下的空间按正数的比例放大。
flex-grow:<positive-number>;
flex-basis: <lenght> | auto;/* 默认 auto */
flex:noe|[<flex-grow><flex-basis>?||<flex-basis>]
align-items:auto|stretchs|flex-start|flex-end|center|baseline
display
的值指定为inline-flex
,而且元素是一个浮动元素或绝对定位元素,则display
的计算值是flex
。标签:order 基线 分享 定位 没有 设备 思想 etc 浮动
原文地址:http://www.cnblogs.com/jackzhoumine/p/6569197.html