position之absolute居中定位

.parent {
    position: relative;
    width: 200px;
    height: 150px;
    background: blue;    
}
.child {
    position: absolute;
    width: 80px;
    height: 80px;
    background: red;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto;
}

<div class="parent">
    <div class="child"></div>
</div>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章