ie-8在图像上获得黑色轮廓



我正在开发一个网站,并在ie8中获得黑色轮廓它在所有其他主流浏览器中都很好看,但在ie-8中却没有请帮帮我这是我的实时链接http://www.cadellfoods.com.au/food-service-products.html(圆形截面)

请帮帮我所有图像的代码如下

#Section1
{
    background:transparent url('Images/Chilled.png') no-repeat;
    background-repeat:no-repeat;
    border:none; outline:none; outline:0;
    border-width: 0;
}

在IE 8中也可以。也许你在windows XP 上的IE 8中有问题

作为一种好的做法,你不应该在你的身份证或课程开始时使用大写字母。

可能不是这样,但我注意到IE在链接的图像上设置了边框。您需要撤消这些默认设置。

#Section1 a:link img {
   border:none;
}

不要忘记:悬停和:访问的假名。

以防万一,试试这些

#Section1 img {
   border:none;
}
#Section1 a:link {
   border:none;
}

最新更新