如果您查看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%);
}