Web速查-索引

Alt text

定义

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

语法

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

属性值

描述
flex-start 默认值。项目位于容器的开头。
flex-end 项目位于容器的结尾。
center 项目位于容器的中心。
space-between 项目位于各行之间留有空白的容器内。
space-around 项目位于各行之前、之间、之后都留有空白的容器内。
initial 设置该属性为它的默认值。
inherit 从父元素继承该属性。

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
#main {
width: 300px;
height: 150px;
border: 1px solid #c3c3c3;
display: flex;
justify-content: space-around;
}
#main div {
width: 66px;
height: 66px;
}
</style>
</head>
<body>
<div id="main">
<div style="background-color:coral;">A</div>
<div style="background-color:lightblue;">B</div>
<div style="background-color:khaki;">C</div>
</div>
</body>
</html>
A
B
C

浏览器支持

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

Safari Chrome FireFox IE
3.1 4.0 3.0 8.0