Can someone help me with this HTML challenge?
<div class="span3">
<div class="abc">code for first div</div>
<div class="abc">code for second div</div>
</div>
I'm trying to hide the first "abc" division within the "span3" division using external CSS. However, since I've used "span3" in other places as well, I need to specifically target the "abc" class without specifying it as the first child.
Does anyone know how I can select the first "abc" division within "span3"?