css 水平垂直局中、页面水平方向局中

水平垂直居中
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;
}


你可能感兴趣的:(css 水平垂直局中、页面水平方向局中)