原创

CSS-水平分布间隔-flex:justify-content:space-around基本用法:项目位于各行之前、之间、之后都留有空白的容器内

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>flex:justify-content:space-around基本用法:项目位于各行
            之前、之间、之后都留有空白的容器内</title>
<style type="text/css">
.container {
width: 250px;
background-color: orange;
}
.flex-container {
margin: 0 auto;
width: 150px;
display: flex;
flex-flow: row nowrap;
justify-content: space-around;
}
.flex-container div {
line-height: 80px;
text-align: center;
vertical-align: middle;
color: white;
width: 40px;
height: 80px;
}
</style>
</head>

<body>
justify-content:
<br/>
<br/>flex-start 默认值。项目位于容器的开头。
<br/>flex-end 项目位于容器的结尾。
<br/>center 项目位于容器的中心。
<br/>space-between 项目位于各行之间留有空白的容器内。
<br/>space-around 项目位于各行之前、之间、之后都留有空白的容器内。
<br/>initial 设置该属性为它的默认值。请参阅 initial。
<br/>inherit 从父元素继承该属性。请参阅 inherit。
<div class="container" style="margin-top: 30px;">
<div class="flex-container">
<div style="background-color: red;">
</div>
<div style="background-color: green;">
</div>
<div style="background-color: blue;">
</div>
</div>
</div>
</body>

</html>
正文到此结束
本文目录