极速小乌龟

导航

C3垂直居中均分

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.aa{
display: flex;
align-items: center;
justify-content: center;
width: 800px;
border: 1px;
}
.aa>div{
flex: 0 0 20%;
margin-left: 5px;
height: 30px;
background: red;
border: 1px solid yellow;
}
</style>
</head>
<body>
<div class="aa">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>

</body>
</html>

posted on 2018-03-18 18:09  极速小乌龟  阅读(171)  评论(0编辑  收藏  举报