码迷,mamicode.com
首页 > 移动开发 > 详细

移动端居中的办法

时间:2015-12-02 18:15:49      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

<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;
}

 

移动端居中的办法

标签:

原文地址:http://www.cnblogs.com/yanwen2015/p/5013597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!