Re: Border and background images

Justin Wood wrote:

> 
>>   background: url(base.gif) center center,
>>               url(floral.gif) bottom right fixed,
>>               white;
>>
> ...I guess this rules out a "fallback" mechanic to be added to 
> background property(ies) similar to the content fallbacks...

If you want a single-image fallback for UAs not supporting multiple backgrounds:

   background: url(fallback.gif) center center white;
   background: url(base.gif) center center,
               url(floral.gif) bottom right fixed,
               white;

-- 
http://fantasai.inkedblade.net/contact

Received on Sunday, 29 August 2004 03:30:33 UTC