Re: Class Selectors Extension Proposals

I gave a currently workable alternative to the parametrized class 
proposal:

> .x {
>     a: i1;
>     b: j1;
>     c: k1;
>     }
> .x4 {
>     a: i4;
>     }
> 
> <span class="x x4">This element belongs to two classes, each addressed in the style 
> sheet and given appropriate declarations.</span>

And there is another way:

.x, .x4 {
    a: i1;
    b: j1;
    c: k1;
    }
.x4 {
    a: i4;
    }

<span class="x4">This element belongs to a single class which is 
addressed in the style sheet once to assign common declarations and 
again to assign class-specific declarations</span>

-- 
Etan Wexler <mailto:ewexler@stickdog.com>

Received on Sunday, 26 May 2002 04:40:02 UTC