I'm doing a navigation bar with css and for some reason on my bar when I add display block to the link in the list item when hovered over, in IE7 it adds extra spacing below the list item. I do the display block so that the link spreads the width of the list item. Here is the css:
Any thoughts on what I'm doing wrong.
Code:
#navbar li:hover a { color:#000; display:block; }
Comment