Possible Duplicate:
Is it possible to combine a background image and CSS3 gradients?

I'm using CSS for a background gradient:

 background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #95d7d3), color-stop(1, #7db1ad) );
 background:-moz-linear-gradient( center top, #95d7d3 5%, #7db1ad 100% );
 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#95d7d3', endColorstr='#7db1ad');

But I would also like to add a background image, is there a way of doing this with these gradients?

If I use this:

background: -moz-linear-gradient( center top, #95D7D3 5%, #7DB1AD 100% ) url(../img/icons.png) 0 -293px no-repeat!important;

The gradient over-rides the background image.

any ideas?

link|improve this question

62% accept rate
1  
Answer to your question here: stackoverflow.com/questions/2504071/… – João Gala Louros Sep 21 '11 at 18:49
feedback

closed as exact duplicate by BoltClock, AVD, agf, 0A0D, bažmegakapa Sep 22 '11 at 12:25

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

background: url(../img/icons.png), -moz-linear-gradient( center top, #95D7D3 5%, #7DB1AD 100% ) ;

link|improve this answer
feedback

Will the below link be helpful:

http://css3.mikeplate.com/

link|improve this answer
Not very, I'm sure. – BoltClock Sep 21 '11 at 20:00
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.