码迷,mamicode.com
首页 > 其他好文 > 详细

UC浏览器 垂直水平居中

时间:2016-09-24 23:38:44      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:

今天使用下述方式定义水平垂直居中不起作用

#box{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

然后改用:

#box{
    position: fixed;
    left:50%;
    top:50%;
    -webkit-transform:translate3d(-50%,-50%,0);
                transform:translate3d(-50%,-50%,0);
}    

至于不起作用的原因 ,我也不知道

UC浏览器 垂直水平居中

标签:

原文地址:http://www.cnblogs.com/lpt1229/p/5904433.html

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