The goal is to have an element's parent dictate it’s style. So .dark .light p
would have light text, .dark p
would have dark text, and .light .dark .light p
would have light text.
The p
element might not even be a direct child of .dark
or .light
so .light .dark div.wrap div.inner p
would have dark text.
Because of the cascading nature of CSS, it seems to prefer the last rule. Is this even possible?
/* Doesn't work - switching the order isn't helpful
as the opposite problem occurs */
.dark p {
color: #000;
}
.light p {
color: #aaa;
}
/* Works, but in my use case I need to specify attributes on
specific element. */
/*
.dark {
color: #000;
}
.light {
color: #aaa;
}
*/
/* Works but not realistic if paragraph is nested deeper */
/*
.dark > p {
color: #000;
}
.light > p {
color: #aaa;
}
*/
/* Only works on the first two levels */
/*
.dark p {
color: #000;
}
.light p {
color: #aaa;
}
.dark .light p {
color: #aaa;
}
.light .dark p {
color: #000;
}
*/
<div class="light">
<p>Light text</p>
<div class="dark">
<p>Dark text</p>
<div class="light">
<p>Light text</p>
</div>
</div>
</div>
<div class="dark">
<p>Dark text</p>
<div class="light">
<p>Light text</p>
<div class="dark">
<p>Dark text</p>
</div>
</div>
</div>
I approached this problem by setting up the HTML a bit differently. This gives enough flexibility for two levels.