移動端居中的辦法

<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;
}
相關文章
相關標籤/搜索