Flexbox And Grid
Justify Content
用于控制 flex 和 grid 项目如何沿着容器的主轴定位的功能类。
语法
Class | Properties | 平台兼容性说明 |
---|---|---|
justify-start | justify-content: flex-start; | H5、小程序、app-vue、app-nvue |
justify-end | justify-content: flex-end; | H5、小程序、app-vue、app-nvue |
justify-center | justify-content: center; | H5、小程序、app-vue、app-nvue |
justify-between | justify-content: space-between; | H5、小程序、app-vue、app-nvue |
justify-around | justify-content: space-around; | H5、小程序、app-vue、app-nvue |
justify-evenly | justify-content: space-evenly; | H5、小程序、app-vue |