目录

CSS flex-flow 属性


示例

使灵活项目以相反的顺序显示,并在必要时换行:

div {
  display: flex;
  flex-flow: row-reverse wrap;
}
亲自试一试 »

定义和用法

这个flex-flowproperty 是以下属性的简写:

笔记:如果元素不是灵活项,则flex-flow属性没有影响。

展示演示❯

默认值: 行现在包裹
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.flexFlow="column nowrap"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

后跟 -webkit- 或 -moz- 的数字指定使用前缀的第一个版本。

Property
flex-flow 29.0
21.0 -webkit-
11.0 28.0
18.0 -moz-
9.0
6.1 -webkit-
17.0


CSS 语法

flex-flow: flex-direction flex-wrap|initial|inherit;

属性值

Value Description Play it
flex-direction Possible values:

row
row-reverse
column
column-reverse
initial
inherit

Default value is "row".

Specifying the direction of the flexible items

Demo ❯
flex-wrap Possible values:

nowrap
wrap
wrap-reverse
initial
inherit

Default value is "nowrap".

Specifying whether the flexible items should wrap or not

Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS 教程:CSS 灵活盒

CSS 参考:弹性属性

CSS 参考:弯曲方向属性

CSS 参考:flex-wrap 属性

CSS 参考:弹性基础属性

CSS 参考:弹性增长属性

CSS 参考:伸缩收缩属性

HTML DOM 参考:flexFlow 属性