IE drop down menu bug
im trying to fix a bad website, there was alot of differences between chrome, mozilla, ie and opera,
after much work, came to this: http://www.israelnumber.com/new1/default.asp
BUT
on ie, when going ove开发者_C百科r: products->numbers, theres a small space between the link below, and the menu on the right.
any thoughts why?
You will never get IE to attempt to perform like the other far more modern browsers without a proper doctype. Add this to your first line:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
Then validate your html and css for those lists of errors.
It seems to me that it's an issue with the background image of the drop down menu, if you look closely you'll see that it has a 1px clipping of what seems to be the main banner image, remove this and it should fix it.
精彩评论