gpt4 book ai didi

HTML 默认链接颜色

转载 作者:太空狗 更新时间:2023-10-29 14:48:27 24 4
gpt4 key购买 nike

我想使用 CSS 将某些元素的颜色设置为默认链接颜色。

<a href="/">That color</a> is the same as <span style="color: link;">that</span>.

有什么办法吗?本网站不更改默认浏览器的链接颜色。

最佳答案

即使您不更改默认颜色,指定颜色以确保它在所有浏览器中看起来都一样仍然是个好主意。我会在样式表中放置类似这样的内容:

a, span.link {
color: blue;
}

a:visited, span.visited {
color: purple;
}

a:active, span.active {
color: red;
}

然后你可以设置样式span作为<span class="link">Your fake link</span> 的链接

关于HTML 默认链接颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2407142/

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