css - UC手机浏览器下如何让div水平垂直居中。
PHP中文网
PHP中文网 2017-04-17 11:10:16
0
4
1026

UC浏览器在宽高固定下,margin:auto,上下左右0;不能水平垂直居中是什么原因?

CSS#globalTip{
    position: fixed;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    z-index: 99999;
    width:75%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #000;
    color:#fff;
    font-size: 1.6rem;
    border-radius: 20px;
}

如果position:absolute就可以,但这并不是我想要的。

PHP中文网
PHP中文网

认证0级讲师

全部回复(4)
大家讲道理

display: table-cell;
vertical-align: middle;

大家讲道理

我后来换了另一种水平垂直居中写法

css#globalTip{
    position: fixed;
    left:50%;
    top:50%;
    z-index: 99999;
    margin-left: -35%;
    margin-top:-25px;
    width:75%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: nth($theme-color,1);
    color:#fff;
    font-size: 1.6rem;
    border-radius: 20px;
}

但依然想知道UC浏览器用原写法怎么解决bug

大家讲道理

在absolute和fixed定位方式下使用

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

我也遇到了相同的问题
uc下 水平垂直居中不管事
解决方案

.box{
    display: flex;
    justify-content: center;
    align-items: center;
}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!