'-moz-transform'被弃用是什么意思?

时间:2013-05-18 11:03:27

标签: css

我使用下面的CSS为我的网站Yep Website

制作语音气泡

在谷歌浏览器和野生动物园中看起来没问题。它没有出现在firefox给我,'-moz-transform'被删除?我不擅长设计。我想寻求帮助如何纠正这个问题。提前谢谢。

/*SPEECH BUBBLES*/
    .wiget_bottom_all li h3 {
        position:relative;
        padding:15px;
        margin:1em 0 3em;
        color:#fff;
        background:#00B9B7;
        /* css3 */
        background:-webkit-gradient(linear, 0 0, 0 100%, from(#f04349), to(#c81e2b));
        background:-moz-linear-gradient(#f04349, #c81e2b);
        background:-o-linear-gradient(#f04349, #c81e2b);
        background:linear-gradient(#00B9B7, #00B9B7);
        -webkit-border-radius:10px;
        -moz-border-radius:10px;
        border-radius:10px;
    }


    /* THE TRIANGLE
    ------------------------------------------------------------------------------------------------------------------------------- */

    /* creates the wider right-angled triangle */
    .wiget_bottom_all li h3:before {
        content:"";
        position:absolute;
        bottom:-20px; /* value = - border-top-width - border-bottom-width */
        left:105px; /* controls horizontal position */
        border:0;
        border-right-width:30px; /* vary this value to change the angle of the vertex */
        border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */
        border-style:solid;
        border-color:transparent #00B9B7;
        /* reduce the damage in FF3.0 */
        display:block; 
        width:0;
    }

2 个答案:

答案 0 :(得分:2)

Firefox可能已停止支持供应商前缀css规则。 你有一个没有出售的前缀css规则:transform: ...可能会有所作为。

根据http://caniuse.com/#search=transform,自firefox 19以来,firefox中一直支持未出售的前缀变换规则。

编辑:你没有在s.t上的示例代码中使用-moz-transform。你可能在你的css中的其他地方使用它,否则错误消息真的不应该在那里

答案 1 :(得分:1)

似乎有跨浏览器代码的问题。您可以参考css技巧以获得跨浏览器兼容的代码。 Perhaps, read this.