flex-flow
版本:CSS3
CSS
浏览器支持
![]() | ![]() | ![]() | ![]() | ![]() |
IE11 以上版本的浏览器都支持flex-flow | ||||
语法
flex-flow :<flex-direction>|<flex-wrap>
取值
- <flex-direction>:定义弹性盒子元素的排列方向。
- <flex-wrap>:控制 flex 容器是单行或者多行。
例子
element {
flex-flow: column-reverse wrap ;
}
版本:CSS3
CSS
![]() | ![]() | ![]() | ![]() | ![]() |
IE11 以上版本的浏览器都支持flex-flow | ||||
flex-flow :<flex-direction>|<flex-wrap>
element {
flex-flow: column-reverse wrap ;
}
上篇:flex-wrap