Reputation: 2052
In the nav bar on this site, we're having a problem with padding on the li items in the nav bar. http://www.wbbearonline.com/
In Chrome and Safari, the left padding on each li item says 10, but it's actually adding a couple extra pixels (making padding 12 or 13).
Firefox and IE9 show the correct 10px.
Any ideas what might be causing this?
Upvotes: 0
Views: 1529
Reputation: 21466
FireFox is not applying the a:link css property to links that have been visited, therefore those links do not receive the 3px padding. Chrome is applying it however.
To fix it, try just changing your css "a:link" rule to "a".
Upvotes: 1