使用 Flex 布局实现垂直居中异常的简单,还是直接上代码。
<div class="parent">
<div class="center">
垂直居中
</div>
</div>
<style>
.parent {
width: 100%;
height: 80px;
background: #fafb9a;
display: flex;
justify-content: center;
align-items: center;
}
.center {
width: 80px;
height: 40px;
line-height: 40px;
text-align: center;
border: 1px solid red;
}
</style>
网友评论