Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

hover

When to use nav:hover or a:hover? Are they the same?

1 Answer

Janek Rezner
Janek Rezner
12,973 Points

nope! nav:hover would select the whole nav at once when you hover over it (so once for the whole element)

and

a:hover when on actual links individually are selected (so it would trigger a selection each time for every link ).

you nav might span across the whole viewport so it makes sense to do a:hover.

Thank you. That makes total sense. And yet, the test did not consider a:hover as a correct answer but rather nav a:hover. Seems strange!