Below is a simple piece of HTML/CSS code, where I put in two URLs:
- The 1st URL (Google) is a child of the div.
- The 2nd URL (Bing) is only a descendant of the div.
Child-selector use implies that only the Google URL should be colored Red.
But in implementation, somehow both Google and Bing URLs are Red. (Also, interestingly, when I remove the <h1>Text</h1> element, then only the Google URL is colored Red.)
What is the reason?
Here is the HTML extract:
<div class="mydiv">
<a href="http://www.google.com">Google</a>
<p>
<h1>Text</h1>
<a href="http://www.bing.com">Bing</a>
</p>
</div>
And the CSS extract:
.mydiv > a {
color:red;
}