As we know, there's several CSS shortcuts (greater than, classes joined without spacing etc. etc.) but I'm wondering if we can state multiple parent CSS classes, while the children remain the same ?
For ease, I'm using a simple example...
Instead of:
.node-type-sponsors .container .page-header,
.node-type-supporters .container .page-header
{color:blue;}
Is there a shorter way of writing this by specifying the parent classes to be affected, but only listing the children once...
eg:
.node-type-sponsors,.node-type-supporters
[I assume something would go here to signify we've moved onto child elements]
.container .page-header
{color:blue;}