IE7 CSS List Bug
Tuesday, February 5th, 2008Not really a bug, just a bad combination of CSS. If you style navigation links using list items, don’t repeat my mistake:
#nav ul{
list-style-type: none;
list-style-position: inside;
}
I had both these elements but in separate areas of my code. IE7 interprets this as an invisible bullet, creating a mysterious ~10px margin where the bullet would be located. Firefox [...]
Popularity: 36% [?]