css – Internet Explorer 9中图像映射周围的蓝色边框

前端之家收集整理的这篇文章主要介绍了css – Internet Explorer 9中图像映射周围的蓝色边框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下问题 – 我在网站上使用图像映射.在Internet Explorer 9(IE8很好)中,当我单击链接(区域标记)时,它周围会出现蓝色边框.如何摆脱它?
我试过了:
map,map area {
border:none !important;
}
img,a img,a:link img,a:visited img {
border:none !important;
}

但它没有帮助.有人有这个问题吗?请查看网站 – http://www.naturalnie.test.dih.pl/.图像地图在徽标下,链接说:“Home,Kosmetyki,Lekarstwa,Żywnośćisuplementy,O Naturalnie.net”.

编辑:

我找到了解决方案.以下代码有效:

a,img {outline:none;}
map > area,map > area:active,map > area:focus {outline: none; border:0; }

解决方法

为什么不呢
a,img { border: none; }
原文链接:https://www.f2er.com/css/215623.html

猜你在找的CSS相关文章