html代码:
<div class="father">
<p>我要垂直居中</p>
</div>
css代码:
.father {
display:flex;
align-items: center; //交叉轴
justify-content:center; //主线
background:grey;
height:100vh;
}
html代码:
<div class="father">
<p>我要垂直居中</p>
</div>
css代码:
.father {
display:flex;
align-items: center; //交叉轴
justify-content:center; //主线
background:grey;
height:100vh;
}