gpt4 book ai didi

CSS 通过 ID 和 CLASS 激活

转载 作者:行者123 更新时间:2023-12-03 00:39:29 25 4
gpt4 key购买 nike

如何使用 class="active" 编写此 CSS 代码,以便背景显示在其下方?可以这么说,在 .active 上使用不同的颜色(不是 :hover)。

<a href="[url]" id="curs_section" class="active">kids</a>

我的尝试:

a#curs_section .active  {
background-color: #66a7eb;
color: #333;
}

最佳答案

.active 之前不应该有空格,因为它是 anchor 本身的类。 a#curs_section .active 表示具有 active 类的元素,它是 a#curs_section 的后代,因此您的样式未得到应用。

a#curs_section.active  {
background-color: #66a7eb;
color: #333;
}

关于CSS 通过 ID 和 CLASS 激活,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16724315/

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