It appears that the css nth-child selector did not hit its mark. Any ideas on why?
Here is the HTML structure:
<a href="#">red</a>
<br />
<a href="#">none</a>
<br />
<a href="#">gray</a>
This is the accompanying CSS code:
a:nth-child(1) {
color:red;
}
a:nth-child(3) {
color:gray;
}