Lets say I want to define 2 styles.
.color_red { color: Red; }
.banner { display: block; width: 100%; }
Is there a way that I can have the h1 style inherit the color_red style? I don't want to have to do
<div class="banner color_red">This is my banner.</div>
I'd prefer to do something like this...
.banner { ... inherit: color_red; }
...
<div class="banner">This is my banner.</div>
And have the banner have red text.