When I try to target all anchor elements inside the p element using a descendant selector. Rules only apply to child elements and not the nested elements.
p a {
display: inline;
color: red;
}
<p>
<a href="http://www.reddit.com">Go to Reddit website</a>
<a href="http://www.quora.com">Go to QUORA</a>
<div>
<a href="http://www.channel9.com">channel9</a>
</div>
</p>