gpt4 book ai didi

html - CSS 问题

转载 作者:太空宇宙 更新时间:2023-11-04 13:49:21 24 4
gpt4 key购买 nike

这段代码有什么问题? CSS 不工作

<style type="text/css">
.mail a:link {
color: grey;
}

.mail a:visited {
color: grey;
}

.mail a:hover {
color: white;
}
</style>

<a class="mail" href="mailto:astark1@unl.edu">E-mail: suporte@web.pt</a>

最佳答案

您的 css 样式适用于作为 .mail 后代的 anchor 元素,而不适用于类名为 mail 的 anchor 元素。

将样式定义更改为如下:

<style type="text/css">     
a.mail:link {
color: grey;
}

a.mail:visited {
color: grey;
}

a.mail:hover {
color: white;
}
</style>

关于html - CSS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5875598/

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