I have several CSS classes with elements that always use the same combo.
Is there a way in CSS (Not LESS or similar systems) to bundle several classes into one rule?
Pseudo code:
.a{
margin 30px 0;
}
.b{
padding:0 4px;
}
@bob{
.a;
.b;
}
...
...
<div class='bob'>...</div>