gpt4 book ai didi

html - 图像映射区域周围不需要的边框

转载 作者:太空狗 更新时间:2023-10-29 15:38:47 26 4
gpt4 key购买 nike

我正在使用带有圆形区域的图像 map 。问题是我在 IE7 中的区域周围出现了不需要的边框。该边框在 FF 和 Chrome 中不出现,在 IE8/IE9 中也不出现。

我尝试将 border="0"添加到图像中, anchor 的 css 属性即

a{ 
border:none !important;
outline:none !important;
}

但没用。

我还尝试添加 IE 修复 onfocus="blur();"在标签中。这解决了 IE 中的问题,但 FF 现在得到了边界。搜索了很多并通过了这个修复程序,它说它将在使用 IE 修复程序时修复 FF 的问题。

#parent_div *:active, #parent_div *:focus { overflow-x:hidden; outline:none; }

但遗憾的是,即使这样也行不通。我正在使用 FF 9.0.1。

任何帮助将不胜感激。提前致谢。

最佳答案

img{border:none;}

这是ie版本的修复

<!--[if lte IE 6]>
<script type="text/javascript">
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6.
{

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])
if ((version >= 5.5) && (document.body.filters))
{
for(var i=0; i<document.images.length; i++)

{
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""

var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "

var imgStyle = "display:inline-block;" + img.style.cssText
if (img.align == "left") imgStyle = "float:left;" + imgStyle
if (img.align == "right") imgStyle = "float:right;" + imgStyle

if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
var strNewHTML = "<span " + imgID + imgClass + imgTitle
+ " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"

+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+ "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>"
img.outerHTML = strNewHTML

i = i-1
}
}
}
}
window.attachEvent("onload", correctPNG);
</script>
<![endif]-->

试试这个希望它有帮助!!!

关于html - 图像映射区域周围不需要的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9030444/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com