利用绝对定位实现内容居中
.login_box{
width: 450px;
height: 300px;
background-color: white;
border-radius: 3px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); // 分别为x和y方向上的移动,百分比根据自身高度所计算
}
.login_box{
width: 450px;
height: 300px;
background-color: white;
border-radius: 3px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); // 分别为x和y方向上的移动,百分比根据自身高度所计算
}