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>

 

posted @ 2020-06-01 15:03  嘆世殘者——華帥  阅读(191)  评论(0编辑  收藏  举报