Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个锚点body:
body
<a href="link1.html"></a> <a href="link2.html"></a> <a href="link3.html"><img src="img1.png" /></a>
带有图像的那些在右下角有一个奇怪的蓝点。
我尝试a { border: none; }了css,但它们仍然存在!
a { border: none; }
非常感谢任何帮助。谢谢。
CSS:
a {text-decoration: none;}
这应该可行,它对我有用。
看起来您的锚标签在默认情况下会加下划线。尝试将text-decoration锚点设置为none。
text-decoration
none
这应该解决它:
a{ text-decoration: none; }