利用绝对定位实现内容居中

.login_box{
width: 450px;
height: 300px;
background-color: white;
border-radius: 3px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%); // 分别为x和y方向上的移动,百分比根据自身高度所计算
}
posted @ 2022-01-02 17:12  追风不跟风  阅读(58)  评论(0)    收藏  举报