Justify Content 控制flex/grid的主轴
最后更新于:2022-04-02 03:17:52
[TOC]
## Justify Content
| Class | Properties | 备注|
| --- | --- |---|
| justify-start | justify-content: flex-start; |
| justify-end | justify-content: flex-end; |
| justify-center | justify-content: center; |
| justify-between | justify-content: space-between; |并使每个项目之间的距离相等|
| justify-around | justify-content: space-around; |并使每个项目两侧的距离相等|
| justify-evenly | justify-content: space-evenly; |并使每个项目周围的距离相等,但不像使用 justify-around 时项目之间有双倍的距离|
';