1px solid border under my maps in IE6
I have this issue in IE6 where I cannot seem to get rid of a 2px border at the bottom of this map - http://bit.ly/g5kn4K.
In all other browsers, I have managed to sort this out including IE7 where it was happening too.
In IE7, I set a height for the wrapper around the map and this sorted out the issue, but IE6 doesn't like this. In fact, IE6 is allergic to the开发者_如何学运维 web.
Thanks ;)
Might be the way you are applying the border. You have the following:
.imageMapWrapper img { padding: 10px; background-color: #F6F6F6; }
Removing the inline style on that tag, and change the CSS with the following:
.imageMapWrapper img { 10px solid #F6F6F6; }
精彩评论