I'm trying to understand how to apply a CSS rule that looks like this:
.c1 .c2 .c3 {
//some css rules
}
Is it possible to apply these rules in one step like this:
<div class="c1 c2 c3">
//some web content
</div>
Or do I need to structure it like this:
<div class="c1">
<div class="c2">
<div class="c3">
//some web content
</div>
</div>
</div>
Is there an easier way to achieve this without making changes to the CSS file? I want to apply these rules to individual divs.