ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
`align-content`属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。该属性可能取6个值。 > * `flex-start`:与交叉轴的起点对齐。 > * `flex-end`:与交叉轴的终点对齐。 > * `center`:与交叉轴的中点对齐。 > * `space-between`:与交叉轴两端对齐,轴线之间的间隔平均分布。 > * `space-around`:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。 > * `stretch`(默认值):轴线占满整个交叉轴。 ~~~css .box { align-content: flex-start | flex-end | center | space-between | space-around | stretch; } ~~~ ![](http://cndpic.dodoke.com/28b25bdf3c4eed3041841e18b960c986) ~~~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 class="box-item">5</div> <div class="box-item">6</div> <div class="box-item">7</div> <div class="box-item">8</div> <div class="box-item">9</div> </div> ~~~ ~~~css .box { display: flex; flex-wrap: wrap; height: 800px; 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; } ~~~ * `flex-start`:与交叉轴的起点对齐。 ~~~css .box { align-content: flex-start; } ~~~ ![](http://cndpic.dodoke.com/07b141ed7dd15b5a7329fbcdb1b96059) * `flex-end`:与交叉轴的终点对齐。 ~~~css .box { align-content: flex-end; } ~~~ ![](http://cndpic.dodoke.com/9a8bdc77b0bd1bf7684de7ce39ab9b53) * `center`:与交叉轴的中点对齐。 ~~~css .box { align-content: center; } ~~~ ![](http://cndpic.dodoke.com/a156587f7fc73f2571762f222b27b698) * `space-between`:与交叉轴两端对齐,轴线之间的间隔平均分布。 ~~~css .box { align-content: space-between; } ~~~ ![](http://cndpic.dodoke.com/12e4bc56a7ff42bccfe6b94f7f21e0c0) * `space-around`:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。 ~~~css .box { align-content: space-around; } ~~~ ![](http://cndpic.dodoke.com/3346aa34f06e9347768c8c1a7f9e3e19) * `stretch`(默认值):轴线占满整个交叉轴。 ~~~css .box { align-content: stretch; } .box-item { height: auto; } ~~~ ![](http://cndpic.dodoke.com/ab9b7db0d752a168f5d213a291875663)