css - -moz-linear-gradient with PNG background over top -


so firefox supports gradient backgrounds. supports multiple background images.. why not work??

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

also tried:

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

can done??

you must include background image before linear gradient. 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)); 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -