1

我有几个锚点body

<a href="link1.html"></a>
<a href="link2.html"></a>
<a href="link3.html"><img src="img1.png" /></a>

带有图像的那些在右下角有一个奇怪的蓝点。

我尝试a { border: none; }了css,但它们仍然存在!

非常感谢任何帮助。谢谢。

4

2 回答 2

5

CSS:

a {text-decoration: none;}

这应该可行,它对我有用。

于 2013-06-03T18:01:21.067 回答
1

看起来您的锚标签在默认情况下会加下划线。尝试将text-decoration锚点设置为none

这应该解决它:

a{ text-decoration: none; }
于 2013-06-03T18:33:46.990 回答