Forum Moderators: not2easy
I need a little advice how to accomplish this... I've a couple of nested divs..
<div id="a"><a href="#">The first wave</a>
<div id="b">WebFoo...
<div id="c"><a href="#">Here we go</a>
</div>
</div>
</div>
I want only to style the anchor 'Here we go'
But how? I've tried:
c.A:link {text-decoration: none}
c.A:visited {text-decoration: none}
c.A:active {text-decoration: none}
c.A:hover {text-decoration: none; background-color:yellow;color:blue}
with no luck :-¦
#c a:link {text-decoration: none}
#c a:visited {text-decoration: none}
#c a:active {text-decoration: none}
#c a:hover {text-decoration: none; background-color:yellow;color:blue}