开发者

1px solid border under my maps in IE6

开发者 https://www.devze.com 2023-02-19 23:37 出处:网络
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.

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; }
0

精彩评论

暂无评论...
验证码 换一张
取 消