发新话题
打印

CSS justify-content 属性

CSS justify-content 属性

实例

在弹性盒对象的 <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 项目位于各行之前、之间、之后都留有空白的容器内。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit


TOP

发新话题