html css 访问过的链接

发布于 2024-10-16 22:50:07 字数 88 浏览 2 评论 0原文

我的链接有时会变成紫色,可能是因为它们被访问过或者其他什么原因。我想从 css 中禁用它。

我该怎么做?

提前谢谢你可爱的亚历山大

my links turn purple sometimes, probably becouse they are visited or something. I want to disable this from css.

How can i do this?

thanks in advance, yours lovely alexander

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

凉薄对峙 2024-10-23 22:50:08

只需设置一个 CSS 样式即可设置 标签的颜色。

a {color:blue;}

a:linka:hovera:visiteda:focus 有单独的伪标签,但除非它们在其他地方设置,否则您不需要指定它们 - 如果您只是如上所述指定 a 的样式,则它应该应用任何元素的状态。

如果正在设置伪样式并且您需要覆盖它们,那么您将需要类似这样的内容:(

a, a:link, a:visited, a:focus, a:hover {color:blue;}

当然您可以删除上面任何您不想覆盖的内容)

Simply set a CSS style which sets the colour for <a> tags.

a {color:blue;}

There are separate pseudo tags for a:link, a:hover, a:visited and a:focus, but unless they're being set elsewhere, you shouldn't need to specify them - if you just specify the style for a as above, it should apply whatever the state of the element.

If the psedo styles are being set and you need to override them, then you'll need something like this:

a, a:link, a:visited, a:focus, a:hover {color:blue;}

(of course you can remove any of the above that you don't want to override)

九命猫 2024-10-23 22:50:08

您可以使用选择器 a:visited。

a:visited {
  color : black;
}

You can use the selector a:visited.

a:visited {
  color : black;
}
无畏 2024-10-23 22:50:08

在CSS中写:

a:visited 
{
   color: #f00; /*where #f00 is your hexadecimal colorcode, you can use "blue" or an RGBa value too!*/
}

In CSS write:

a:visited 
{
   color: #f00; /*where #f00 is your hexadecimal colorcode, you can use "blue" or an RGBa value too!*/
}
冷月断魂刀 2024-10-23 22:50:08

您需要为链接定义访问属性。

<style type="text/css">
a:visited {color: #000000}
</style>

You need to define the visited property for your links.

<style type="text/css">
a:visited {color: #000000}
</style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文