gpt4 book ai didi

html - 无法更改标题中的链接颜色代码

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

我一直在尝试将 header 中的链接更改为#000000,但由于某种原因它似乎没有改变颜色。我只想更改标题中的链接,而不是其余链接。下面是示例:

HTML:

<a class="submit-a-request" href="/hc/en-us/requests/new">Submit a request</a>

CSS:

a {
color: #022550;
font-family: 'Nunito Sans', sans-serif;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

这是我尝试过的:

.submit-a-request a:link {
color: #000000;
}

还有这个:

a.submit-a-request {
color: #000000;
}

有人可以请教吗?谢谢。

最佳答案

看起来您没有使用 CSS 定位正确的元素。试试这个:

a.submit-a-request {
color: #000000;
}

/* Next line is optional - enter your own hex color for hover */
a.submit-a-request:hover {
color: #000000;
}

关于html - 无法更改标题中的链接颜色代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54697531/

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