Is it possible to create a CSS selector for \'element with class b, which is a descendant of an element with class a\'?
Thanks, Rasto
Yes it is possible:
Direct Descendants:
.a > .b { /* ... */ }
All Descendants:
.a .b { /* ... */ }