Re: CSS Attribute Proposal

David Zülke wrote:
> What about multiple backgrounds btw? :)

You will, I believe, be able to use the ::outside pseudo-element [1] to 
do this and apply as many backgrounds as you need in an position.

eg.
p { background: transparent url(bg-img-01);
     background-position: top left;
     ...
}
p::outside { background: transparent url(bg-img-02);
              background-position: bottom right;
              ...
}
etc…

[1] http://www.w3.org/TR/css3-content/#wrapping
-- 
Lachlan Hunt

http://www.lachy.id.au/
lachlan.hunt@lachy.id.au

Received on Saturday, 21 August 2004 14:50:54 UTC