Is there a way to style all elements with class X only if they also have classes A, B, or C without repeating the code?
I am aware of grouping like this:
A, B, C {
...
}
But I am looking for something more along the lines of:
X, (A, B, C) {
...
}
How can I accomplish this without duplicating the code?