Re: CSS and structure

Orion Adrian wrote:
> selector* {
>  @block {
>      rule-that-only-applies-to-block-elements: value;
>      rule-that-only-applies-to-block-elements: value;
>   }
>   rule-that-applies-to-any-element: value;
> }

   You cannot select an element based on a value of a CSS property, so 
this would not work.

What would happen with this?
@block { display: inline; }

-- 
Lachlan Hunt

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

Received on Tuesday, 29 June 2004 09:47:41 UTC