css 水平垂直局中、页面水平方向局中
2019-10-31 本文已影响0人
轩轩小王子
水平垂直居中
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;
}