有谁知道如何使 CSS 链接悬停属性适用于不链接到另一个 html 页面或锚点的链接?
例如这有效:
<a href="page1.html">Page1</a>
<a href="#page9">Link</a>
a:hover,a:visited:hover{
color:#fff;
text-decoration:none;
}
a:link,a:visited{
color:#555;
text-decoration:none;
}
但是,当我将链接更改为不是锚点或 html 文件的内容时,假设是 mailto:
<a href='mailto:bla@bla.com'>Send email</a>
当我将鼠标悬停在链接上时,它不再改变颜色。为什么是这样?