css – 如何设置background-position-x?

前端之家收集整理的这篇文章主要介绍了css – 如何设置background-position-x?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Opera上设置background-position-x?
div#logocontainer{
    width: auto;
    height: auto;
    text-align: center;
    line-height: 200px;
    overflow: auto;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/WatermarkMP.png);
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 50%;
    padding: 10px;
}

我有以下CSS规则,它将在Chrome和Safari,桌面和移动版本上正确显示.但是Opera不会在Opera上工作,似乎不支持background-x:50%; background-position-y:50%;规则.我必须脚本这样做才能与Opera兼容吗?如何解决这个问题呢?

它似乎还没有结束jQuery Mobile角落…

解决方法

您必须设置背景位置:50%50%.那些-x和-y属性仅在Internet Explorer和Webkit浏览器中受支持.
原文链接:https://www.f2er.com/css/216445.html

猜你在找的CSS相关文章