ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
`flex-direction`属性决定主轴的方向(即项目的排列方向)。它可能有4个值。 > * `row`(默认值):主轴为水平方向,起点在左端。 > * `row-reverse`:主轴为水平方向,起点在右端。 > * `column`:主轴为垂直方向,起点在上沿。 > * `column-reverse`:主轴为垂直方向,起点在下沿。 ~~~css .box { flex-direction: row | row-reverse | column | column-reverse; } ~~~ ![](http://cndpic.dodoke.com/63603dd7e9deb81b025fe03fc6e9fdfb) ~~~html <div class="box"> <div class="box-item">1</div> <div class="box-item">2</div> <div class="box-item">3</div> <div class="box-item">4</div> </div> ~~~ ~~~css .box { display: flex; background-color: white; } .box-item { width: 200px; height: 200px; line-height: 200px; vertical-align: middle; margin: 5px; background-color: #ffd200; font-size: 100px; color: white; text-align: center; } ~~~ - row(默认值):主轴为水平方向,起点在左端。 ~~~css .box { flex-direction: row; } ~~~ ![](http://cndpic.dodoke.com/0a73f0b8e41bb380b392d17ddba5b285) - row-reverse:主轴为水平方向,起点在右端。 ~~~css .box { flex-direction: row-reverse; } ~~~ ![](http://cndpic.dodoke.com/6a2f644b7944405c3ab01e5f2e72a070) - column:主轴为垂直方向,起点在上沿。 ~~~css .box { flex-direction: column; } ~~~ ![](http://cndpic.dodoke.com/098e9644cf08064768bffe6e17f79188) - column-reverse:主轴为垂直方向,起点在下沿。 ~~~css .box { flex-direction: column-reverse; } ~~~ ![](http://cndpic.dodoke.com/1a477239efc8203255f43efb8d887247)