Style flexFlow 屬性
定義和用法
flexFlow 屬性是 flexDirection 和 flexWrap 屬性的速記屬性。
flexDirection 屬性規(guī)定靈活項目的方向。
flexWrap 屬性規(guī)定靈活項目是否拆行或拆列。
注意:如果元素不是靈活的項目,則 flexFlow 屬性不起作用。
瀏覽器支持
Firefox、Opera 和 Chrome 支持 flexFlow 屬性。
語法
返回 flexFlow 屬性:
object.style.flexFlow
設置 flexFlow 屬性:
object.style.flexFlow="flex-direction flex-wrap|initial|inherit"
屬性值
值 | 描述 |
---|---|
flex-direction | 可能的值: row row-reverse column column-reverse initial inherit 默認值是 "row"。 規(guī)定靈活項目的方向。 |
flex-wrap | 可能的值: nowrap wrap wrap-reverse initial inherit 默認值是 "nowrap"。 規(guī)定靈活項目是否拆行或拆列。 |
initial | 設置該屬性為它的默認值。請參閱 initial。 |
inherit | 從父元素繼承該屬性。請參閱 inherit。 |
技術細節(jié)
默認值: | row nowrap |
---|---|
返回值: | 字符串,表示元素的 flex-flow 屬性。 |
CSS 版本 | CSS3 |
相關文章
CSS 參考手冊:flex-flow 屬性
HTML DOM STYLE 參考手冊:flex 屬性
HTML DOM STYLE 參考手冊:flexBasis 屬性
HTML DOM STYLE 參考手冊:flexDirection 屬性
HTML DOM STYLE 參考手冊:flexGrow 屬性
HTML DOM STYLE 參考手冊:flexShrink 屬性
HTML DOM STYLE 參考手冊:flexWrap 屬性
更多建議: