如何让div盒子在页面居中显示

让盒子定位 并且transform平移


.login_box {
 width: 450px;
 height: 300px;
 background-color: #fff;
 
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%,-50%);  //重点在这  取和定位一样的值即可
}

猜你喜欢

转载自blog.csdn.net/weixin_57607714/article/details/123734752