Hey all.
I’m trying to use CSS3 multiple background images in my design. Here’s the code I am using. It’s not working in FF 3.6 or Chrome 7 - what am I missing?
body { background:url(images/bg-body.png), url(images/page-top-stripe.png) repeat-x; }
Hi, Your CSS is valid and those browsers do support multi BG images. Do you have a link to the page by chance?
Here is a quick example I put together that shows it working fine in them http://www.css-lab.com/test/multi-bg.html
Just be sure to place the top layer image first in the string, that may be where you went wrong.
Ah… that was the problem. Thank you!