I want two classes with different names to have the same property in CSS. I don't want to repeat the code.
.abc {
margin-left:20px;
}
.xyz {
margin-left:20px;
}
<a class="abc">Lorem</a>
<a class="xyz">Ipsum</a>
See Question&Answers more detail:os