实例
在弹性盒对象的 <div> 元素中的各项周围留有空白:
div
{
display: flex;
justify-content: space-around;
}
定义和用法
justify-content 用于设置或检索弹性盒子元素在主轴(横轴)方向上的对齐方式。
提示:使用 align-content 属性对齐交叉轴上的各项(垂直)。
CSS 语法
justify-content: flex-start|flex-end|center|space-between|space-around|initial|inherit;
flex-start 默认值。项目位于容器的开头。
flex-end 项目位于容器的结尾。
center 项目位于容器的中心。
space-between 项目位于各行之间留有空白的容器内。
space-around 项目位于各行之前、之间、之后都留有空白的容器内。