p .intro a { color: yellow }
It will stylize any (reading from right to left)
a tag- which is a descendant of any tag with a class (dot is a class selector)
intro - which is a descendant of the
p tag
Example (note that the elements are not direct children, but descendants):
<p> <span> <span class="intro"> <span> <a href="#">I am yellow</a> </span> </span> </span> </p>
(violin)
source share