渐变不在Firefox中工作 - 我需要特定的颜色顺序吗?

时间:2012-12-17 09:34:12

标签: firefox css

如果查看http://jsfiddle.net/q2cFb/1/,您会发现#b#a都无法在Firefox(13.0.1)上运行。这是为什么?它适用于Chrome(具有不同的语法,但颜色相同)。

我是否需要使用某些特定颜色来实现渐变? #a#c都使用两种颜色,但#a无效。

HTML:

<div id='c'></div>
<div id='b'></div>
<div id='a'></div>

CSS:

#c {
    background-image: -moz-linear-gradient(center bottom , #131315 37%, #272727 75%);
}

#b {
    background-image: -moz-linear-gradient(center bottom , #242424 80%, #1E1E1E 58%, #191919 20%);
}

#a {
    background-image: -moz-linear-gradient(center bottom , #242424 80%, #191919 20%);
}

2 个答案:

答案 0 :(得分:1)

尝试colorzilla它会自动为您执行css渐变编码。

多浏览器渐变的示例格式

background: #1e5799; /* Old browsers */ background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#7db9e8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* IE10+ */ background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */

答案 1 :(得分:1)

问题在于您的百分比不是在递增。见the MDN docs

  

必须按顺序指定色标。