I am trying to shorten some css selectors for ease of reading for example:
.a>.c,.b>.c
I thought I had used parenthesis in the past to group the union before continuing with more selectors
(.a,.b)>.c
But it seems this is not valid css.
Did I dream that I have done this before or is there a simple way?
My primary concern is readability of the css rather than number of bytes, however that is another obvious advantage to shortening the selector as above.