EDIT: This was already questioned to Håkon Wium Lie, the father of CSS (Opera Watchblog (Wayback machine)):
Bernie Zimmermann: Håkon, why doesn't CSS support constants? Being able to assign an RGB value to a constant, for instance, could make stylesheet maintenance a lot more manageable. Was it just an oversight?
Hakon: No, we thought about it. True, it would have saved some typing. However, there are also some downsides. First, the CSS syntax would have been more complex and more programming-like. Second, what would be the scope of the constant? The file? The document? Why? In the end we decided it wasn't worth it.
So it's not in the standard because they thought it wasn't worth it.
Constants or variables as you have defined are merely placeholders. Since such a placeholder makes only sense if it's used on the same declaration it's useless as grouping already provides this mechanism:
When several selectors share the same declarations, they may be grouped into a comma-separated list.CSS2:Grouping
So instead of using a color in ten selectors, it's often better to collect common declarations and put them together. Instead of
.header{
color: red;
}
.section:nth-of-type(2n) > .ridi.culous > .article:hover{
color: red;
}
.footer{
color: blue;
border: 1px solid blue;
}
use
/* Color definitions */
.header,
.section:nth-of-type(2n) > .ridi.culous > .article:hover{
color: red;
}
.footer{
color: blue;
}
/* border definitions */
.footer{
border: 1px solid;
}
Also use inheritance whenever possible.
Note that you can declare almost some kind of variable if you're using abstract/simple classes like
.margin5em{
margin: 5em;
}
.corporateIdentityBackgroundColor{
background-color: #881200;
}
.corporateIdentityBackgroundImage{
background-image: url(we/are/awesome/corporation);
}
.backgroundCenter{
background-position: center center;
}
.backgroundNoRepeat{
background-repeat: no-repeat;
}
This will enable you to use
<div class="corporateIdentityBackgroundImage backgroundCenter backgroundNoRepeat">Ridiculos long class names</div>
<div class="article">
<p class="margin5em">Yesterday I found a new hobby: Creating class names that are longer then most common words.</p>
</div>
See also: