I am building a page and I am using the w3.css style sheets and it turns out that I would like to assign all the elements "a" the same 4 classes, leaving each element defined as follows:
<a class="w3-bar-item w3-button w3-border-bottom w3-border-deep-purple" style="text-align:right;">Usuario</a>
As this seems very repetitive to me, I would like to do something like:
a {
w3-bar-item;
w3-button;
w3-border-bottom;
w3-border-deep-purple;
}
But clearly this doesn't work, is there a way to do something like this or is it just fantasy?