水平居中布局1
flex + justify-content
by DarcyAn
HTML
<div class="parent">
<div class="child">
child
</div>
</div>
CSS
.parent {
display: flex;
justify-content: center;
background: pink;
height: 100px;
}
.child {
padding:10px;
background: #eee;
height: 80px;
line-height: 80px;
}