因此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;
这可以吗?
答案 0 :(得分:7)
您必须在线性渐变中包含背景图像 BEFORE 。 e.g:
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));