Suppose I have a en element <div clas="foo bar foobar">[stuff]</div>
and I want to replace these three classes with one class (SuperFoo).
While I could find out how foo, bar and foobar are defined, and use each of those elements:
.SuperFoo { color : red }
and so on, is it possible to define SuperFoo in terms of foo, bar and foobar?
.SuperFoo { foo bar foobar}
?
How can I do this?