5

所以 Firefox 支持渐变背景。还支持多个背景图像.. 那么为什么这不起作用呢?

background:-moz-linear-gradient(top, #5989bd,#336296), url(Active-Arrow.png) right center no-repeat;

也试过:

background-color:-moz-linear-gradient(top, #5989bd,#336296);
background:url(Active-Arrow.png) right center no-repeat;    

这个可以吗??

4

1 回答 1

7

您必须在线性渐变之前包含背景图像。例如:

background: url("http://127.0.0.1/css/bg.png") no-repeat, 
-moz-linear-gradient(top left, rgb(0,255,0), rgb(255,0,0));
于 2010-05-01T00:42:29.113 回答