元素垂直水平居中

64 阅读1分钟
    /* 有宽度 */
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top:高度/2;
    margin-left:宽度/2;
        
    /* 无宽度 */
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);