ie6和ie7去除图像精灵周围的边框

时间:2011-02-28 19:35:12

标签: html css internet-explorer-7 internet-explorer-6

我在我的网站上使用图像精灵。

在IE6和IE7中,图像周围出现灰色边框。 在其他浏览器+ IE8

中工作正常

我该如何删除它? 这里是底部的一个div:

enter image description here

2 个答案:

答案 0 :(得分:1)

我将图片标签更改为div并且有效。

答案 1 :(得分:0)

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,
acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,
sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,
thead,tr,th,td
{
    border:0;
    font-weight:inherit;
    font-style:inherit;
    font-size:100%;
    font-family:inherit
}

将该代码添加到我的主css文件中,IE7中的所有边框都消失了。