How can I apply styles to multiple classes at once?
You can have multiple CSS declarations for the same properties by separating them with commas:
.abc, .xyz {
margin-left: 20px;
}
.abc, .xyz { margin-left: 20px; }
is what you are looking for.