该属性用于规划元素的排版方向
。
<!-- 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 | 垂直反转 |