Using css child selector
- by David Thorisson
I am trying to apply css on the first A element inside .Outer,
.Outer > a:first-child {font-weight:bold}
doesn't work. Why?
<div class="Outer">
<img src='image123.jpg' />
<a href="Default.aspx?ID=4083" id="ctl00_CPH_Main_Rep_List2_ctl03_HyperLink1">John Johnsson</a>
<a href="../Users/ViewList.aspx?module=Occupation&ID=70">Doctor</a>
<a href="../Workplaces/Default.aspx?ID=31">Mayo Clinica>
</div>