http://jsfiddle.net/q2cFb/1/を見ると、Firefox(13.0.1)では両方とも#b
機能していないことがわかります。#a
何故ですか?Chromeで動作します(構文は異なりますが、色は同じです)。
グラデーションを機能させるには、特定の色が必要ですか?#a
とは両方とも#c
2色を使用していますが、機能し#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%);
}