gpt4 book ai didi

CSS 帮助,如何在 div 中定位此链接

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

我想将“阅读 BIC 杂志数字版”链接更改为红色(查看附图)。

screen shot of link

我只能访问 css,这就是它的样子。

.logo .header_links{
margin-top:30px;
position:absolute;
right:0px;
bottom:33px;}

.header_links a{
display:inline-block;
font-family: 'verdana', 'arial', sans-serif;
color: #0060AF;
font-size: 13px;
text-decoration:underline;
padding:0 10px;
border-left: 1px solid #666;
margin:0px -4px 0px 0px;}

.header_links a;"Read BIC Magazine Digital Edition"{
color: red;}

.header_links a:first-child{
border-left:0px;}

.header_links a:hover{
text-decoration:none;

链接也是这样的:

<a href="http://www.bicmagazine.com/info/read-bic-magazine-online">Read BIC Magazine Digital Edition</a>

如果我更改 .header_links 的颜色,所有链接都会更改颜色。如何指定更改阅读 BIC 杂志数字版链接的颜色。如果您可以将代码以复制和粘贴的格式放置,那就太棒了!谢谢您的帮助。

最佳答案

好像链接是标题中的第一个链接,如果您只能访问 CSS,则可以执行以下操作:

.header_links a:first-child {
color: red;
}

或者,您可以通过其 href 属性定位链接:

.header_links a[href="http://www.bicmagazine.com/info/read-bic-magazine-online"] {
color: red;
}

如果这些都不起作用,请尝试将颜色设置为 !important:

color: red !important;

为了覆盖之前的选择器。

关于CSS 帮助,如何在 div 中定位此链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33112214/

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