水平垂直居中
window-center{
position: absolute;
background:rgba(255,255,255,1);
margin: auto;
left: 0;
right: 0;
top:0;
bottom: 0;
z-index: 2;
}
页面水平方向居中
.level-derection-center{
display: flex;
flex-direction: column;
align-items: center;
}
网友评论