gpt4 book ai didi

css - 如何覆盖我的通用 css 链接样式

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

我的 CSS 中有这种通用样式:

a:link, a:visited, a:active {
color: #green;
text-decoration: underline;
font-weight: 500;
}

现在我试图用以下内容覆盖链接:

.post-title a {
color: #333333;
text-decoration: none;
}

.post-title .level-one a {
color: #red;
text-decoration: none;
}

.post-title .level-two a {
color: #orange;
text-decoration: none;
}


<p class=""><a href="" class="post-title level-one">Hello world</a></p>

我的 CSS 没有应用,文本颜色是绿色并且有下划线。

我该如何解决这个问题?

最佳答案

您需要使用与要覆盖的规则中相同的伪选择器,此外,如果 a 链接本身具有这些类(我一开始没有看到),您有将它们附加到 a 链接 之间没有空格

a:link.post-title , a:visited.post-title , a:active.post-title  { .......

等等

关于css - 如何覆盖我的通用 css 链接样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42475089/

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