CSS3 justify-content 属性

在弹性盒对象的 <div> 元素中的各项周围留有空白:

div
{
    display: flex;
    justify-content: space-around;
}

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

紧跟在 -webkit-, -ms- 或 -moz- 前的数字为支持该前缀属性的第一个浏览器版本号。

属性chromeedgefirefoxsafariopera
justify-content29.0
21.0 -webkit-
11.028.0
18.0 -moz-
9.0
6.1 -webkit-
17.0

justify-content 用于设置或检索弹性盒子元素在主轴(横轴)方向上的对齐方式。

提示

使用 align-content 属性对齐交叉轴上的各项(垂直)。

默认值:flex-start
继承:no
可动画化:否,参见个别的属性。请参阅 可动画化(animatable)
版本:CSS3
JavaScript 语法:object.style.justifyContent="space-around"

语法

justify-content: flex-start|flex-end|center|space-between|space-around|initial|inherit;

属性值

描述
flex-start默认值。从行首起始位置开始排列。
flex-end从行尾位置开始排列。
center居中排列。
space-between均匀排列每个元素,首个元素放置于起点,末尾元素放置于终点。
space-evenly均匀排列每个元素,每个元素之间的间隔相等。
space-around均匀排列每个元素,每个元素周围分配相同的空间。
initial设置该属性为它的默认值。
inherit从父元素继承该属性。

实例

<style>
.demo-justify-content {
    width: 400px;
    height: 150px;
    border: 1px solid #c3c3c3;
    display: -webkit-flex; /* Safari */
    display: flex;
}
.demo-justify-content.flex-end{
    -webkit-justify-content: flex-end; /* Safari 6.1+ */
    justify-content: flex-end;
}
.demo-justify-content.center{
    -webkit-justify-content: center; /* Safari 6.1+ */
    justify-content: center;
}
.demo-justify-content.space-between{
    -webkit-justify-content: space-between; /* Safari 6.1+ */
    justify-content: space-between;
}
.demo-justify-content.space-evenly{
    -webkit-justify-content: space-evenly; /* Safari 6.1+ */
    justify-content: space-evenly;
}
.demo-justify-content.space-around{
    -webkit-justify-content: space-around; /* Safari 6.1+ */
    justify-content: space-around;
}

.demo-justify-content div {
    width: 70px;
    height: 70px;
}
</style>

<div class="demo-justify-content">
  <div style="background-color:coral;"></div>
  <div style="background-color:lightblue;"></div>
  <div style="background-color:khaki;"></div>
  <div style="background-color:pink;"></div>
</div>

<div class="demo-justify-content flex-end">
  <div style="background-color:coral;"></div>
  <div style="background-color:lightblue;"></div>
  <div style="background-color:khaki;"></div>
  <div style="background-color:pink;"></div>
</div>

效果

flex-start,默认值

flex-end

center

space-between

space-evenly

space-around