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

时间:2013-02-21 06:38:28

标签: html css internet-explorer

我正在开发一个网站并在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;
}

2 个答案:

答案 0 :(得分:0)

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

作为一种良好做法,您不应该用大写字母开始您的ID或类。

答案 1 :(得分:0)

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

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

不要忘记:hover和:visited pseudos。

以防万一尝试这些

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