元素水平垂直居中三種方法實現

qq_35321405發表於2018-06-21

一. 簡介

實現一個元素水平垂直居中的效果。

二. 實現

<body>
<img class="center">
</body>

方法一:(此方法適合寬高固定的)  

.center {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -100px;
    margin-left: -100px;
}

方法二: (此方法適合寬高不固定的元素)

.center {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    right: 0;
    bottom: 0;
}

方法三:(寬高不固定的元素,此方法缺點就是隻能適配到ie9+)

.center{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}


相關文章