2004-10-27 22:15 UTC Multiple background images
Given the following hypothetical CSS3:
body { background: url(foo) url(bar); }
Which background is painted on the bottom, and which is painted on the top?
Should the syntax be like that, or would something else be better?
body { background: url(foo), url(bar); } body { background: url(foo) | url(bar); } body { background: url(foo) and url(bar); }
Let us know what you think it should be by e-mailing www-style@w3.org.