Subclassing a style class?
is it possible to subclass a style class and gives it additional
properties or override some properties, e.g.
..foo {
.......
}
/* inherit all of foo and make font red */
..foored << .foo {
color: red;
}
( X << Y is just a notation I made up )
thanks
|