移动端居中的办法

<div class="container center">
    <span class="img"></span>
</div>

.container {
    background-color: #eee;
    height: 200px;
}
.img {
    display: inline-block;
    width: 64px;
    height: 64px;
    background-color: green;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

 

posted @ 2015-12-02 17:17  Mi文  阅读(328)  评论(0编辑  收藏  举报