gpt4 book ai didi

html - 如何停止悬停时更改颜色的链接?

转载 作者:太空狗 更新时间:2023-10-29 13:23:59 25 4
gpt4 key购买 nike

我的页面上有一个电子邮件链接,当鼠标悬停在上面时该链接会变成蓝色。

我似乎无法解决这个问题,我根本不想改变它。在它的 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;}

关于html - 如何停止悬停时更改颜色的链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23907694/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com