gpt4 book ai didi

css - 如何使用内部跨度设置事件链接的样式?

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

我想设置事件链接的颜色。我的链接具有如下所示的内部跨度。

<a href="index.php"><span>Home</span></a>

我有如下样式,但没有用。

a:active span{
color:yellow;
}

我应该写什么 css 规则才能让它工作。

提前致谢。

最佳答案

正确的 CSS 如下。您应该将 = 替换为 :

a:active span {
color: yellow;
}

编辑

这是对评论的回复

I want to set the color of the link to yellow when index.php display

这不是 :active 所做的。本文摘自 w3.org。 ( http://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes )

The :active pseudo-class applies while an element is being activated by the user. For example, between the times the user presses the mouse button and releases it.

如果你想为当前正在查看的页面设置样式,你必须在服务器端进行。

关于css - 如何使用内部跨度设置事件链接的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8712702/

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