微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

html – 如何在悬停时停止链接更改颜色?

我的页面上有一个电子邮件链接,当它悬停时会变成蓝色.

我似乎无法解决这个问题,我根本不希望它改变.在它的CSS我有它:

.emaillink2
{   text-decoration: none;
color: white;}

a.hover:hover
{   text-decoration: none;
color: white;}

#headerinfo
{
float: right;
font-size: 32px;
color: white;
z-index: 1;
text-align: right;
margin-top: 20px;
text-decoration: none;
}

div的HTML:

<div id="headerinfo">
Telephone: 07777777777
<br/>
Fax: 07777777777
<br/>
Email: <a href="mailto:info@website.org" class="emaillink2">Info@website.org</a>
</div>

然而,当它盘旋时它仍会改变颜色.

解决方法

更改此代码
.emaillink2
{   text-decoration: none;
color: white;}

这段代码

.emaillink2,.emaillink2:hover
{   text-decoration: none;
color: white;}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐