Style flexDirection 属性 详解
css3基础 2023-07-30 02:29:08小码哥的IT人生shichen
Style flexDirection 属性
定义和用法
flexDirection
属性设置或返回弹性项的方向。
注释:如果元素不是弹性项,则 flexDirection
属性无效。
另请参阅:
CSS 参考手册:flex-direction 属性
实例
重新排列 <div> 元素内弹性项的方向:
document.getElementById("main").style.flexDirection = "column-reverse";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
#main {
width: 350px;
height: 350px;
border: 1px solid #c3c3c3;
display: flex;
flex-direction: row;
}
#main div {
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<div id="main">
<div style="background-color:coral;">A</div>
<div style="background-color:lightblue;">B</div>
<div style="background-color:khaki;">C</div>
<div style="background-color:pink;">D</div>
<div style="background-color:lightgrey;">E</div>
<div style="background-color:lightgreen;">F</div>
</div>
<p>请点击“试一试”按钮,将 flexDirection 属性的值设置为 “column-reverse”。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注释:</b>Internet Explorer 10 及更早版本不支持 flexDirection 属性。</p>
<script>
function myFunction() {
document.getElementById("main").style.flexDirection = "column-reverse";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 flexDirection 属性:
object.style.flexDirection
设置 flexDirection 属性:
object.style.flexDirection = "row|row-reverse|column|column-reverse|initial|inherit"
属性值
值 | 描述 |
---|---|
row | 默认值。弹性项目水平显示,作为一行。 |
row-reverse | 与 row 相同,但顺序相反。 |
column | 弹性项目垂直显示,作为一列。 |
column-reverse | 与 column 相同,但顺序相反。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | row |
---|---|
返回值: | 字符串,表示元素的 flex-direction 属性。 |
CSS 版本: | CSS3 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 11.0 | 支持 | 9.0 | 支持 |
相关页面
HTML DOM STYLE 参考手册:flex 属性
HTML DOM STYLE 参考手册:flexBasis 属性
HTML DOM STYLE 参考手册:flexFlow 属性
HTML DOM STYLE 参考手册:flexGrow 属性
HTML DOM STYLE 参考手册:flexShrink 属性
HTML DOM STYLE 参考手册:flexWrap 属性