CSS3 flex-direction 属性

flex-direction

该属性用于规划元素的排版方向

<!-- flex-direction: column; 设置成垂直方向排版 -->

<div style="width:300px; height:200px; display: flex; flex-direction: column;"> 
 <div style="background: red; flex-grow:1;">头部</div> 
 <div style="background: green; flex-grow:3;">内容</div> 
 <div style="background: blue; flex-grow:1;">尾部</div>
</div>

显示效果

头部
内容
尾部

属性值

flex-direction方向设置的一些属性值。

属性含义
row默认值,水平方向
row-reverse水平反转
column垂直方向
column-reverse垂直反转
更多教程 HTML5 教程 CSS3 教程 JavaScript 教程 JQuery 教程 React.js 教程 Node.js 教程 Koa2 教程 Python 教程 Linux 教程