-webkit-box-pack: center;
-moz-justify-content: center;
-webkit-justify-content: center;
justify-content: center;
旧版语法:
box-pack: start | end | center | justify;
主轴对齐:左对齐(默认) | 右对齐 | 居中对齐 | 左右对齐
新版语法:
justify-content: flex-start | flex-end | center | space-between | space-around;
主轴对齐方式:左对齐(默认) | 右对齐 | 居中对齐 | 两端对齐 | 平均分布