codecamp

HTML DOM Style flexFlow 属性

Style flexFlow 属性

Style 对象参考手册 Style 对象

实例

让灵活的项目以列的形式显示,且不拆列:

document.getElementById("main").style.flexFlow="column nowrap";

尝试一下 »

定义和用法

flexFlow 属性是 flexDirection 和 flexWrap 属性的速记属性。

flexDirection 属性规定灵活项目的方向。

flexWrap 属性规定灵活项目是否拆行或拆列。

注意:如果元素不是灵活的项目,则 flexFlow 属性不起作用。


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

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"。

规定灵活项目的方向。

flex-wrap 可能的值:

nowrap
wrap
wrap-reverse
initial
inherit

默认值是 "nowrap"。

规定灵活项目是否拆行或拆列。

initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: 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 属性


Style 对象参考手册 Style 对象

温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }