<h3>flex垂直居中</h3>
<div class="container">
<div class="center">我想居中</div>
</div>
.container {
width: 300px;
height: 300px;
background-color: #e1e1e1;
display: flex;
justify-content: center;
align-items: center;
}
.center {
width: 200px;
height: 200px;
background-color: pink;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.