移动端absolute元素居中

<div class="db">
    <div class="dm"></div>
</div>

.db{
    width:400px;
    height:200px;
    background:#ccc;
}
.dm{
    width:50px;
    height:50px;
    background:pink;
    position:absolute;
    left:0;right:0;
    top:0;bottom:0;
    margin:auto;
} 

 

posted @ 2019-03-23 19:22  bubuchu  阅读(310)  评论(0编辑  收藏  举报