我在图像的顶部绘制了一个热点链接,但不幸的是我可以在网页浏览器SAFARI中看到实际的轮廓。有没有办法摆脱这个?我在Mac上使用Dreamweaver CS3。
On this web page,我画了一些关于兔子和黄色圆圈图像的热点链接。您可以看到,当您单击这些链接时,您会看到我绘制热点的区域。
非常感谢任何帮助。谢谢, 蛱蝶
答案 0 :(得分:0)
我认为你正在寻找outline:none;
css风格。
您希望将其应用于该图片的链接样式。
编辑:在页面顶部的样式标记中添加:
map area{
outline:none;
}
所以看起来应该是这样的:
<style type="text/css">
<!--
@import url(../css_snap01.css);
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}
map area{
outline:none;
}
-->
</style>