gpt4 book ai didi

html - 如何修改仅属于特定类的链接?

转载 作者:行者123 更新时间:2023-11-28 04:37:44 24 4
gpt4 key购买 nike

我想修改仅属于类(class)内容的链接(<a> 标签)。

HTML 代码

<div class="content">
<a href="semI">SEM I </a> </br></br>
<a href="semII">SEM II </a>
</div>

CSS 代码

a.content:link, a.content:visited {
background-color: #f44336;
color: white;
width : 400px;
padding-left: 25px;
text-align: left;
text-decoration: none;
display: inline-block;
}

最佳答案

将您的 css 更改为 .content a

.content a:link, .content a:visited {
background-color: #f44336;
color: white;
width : 400px;
padding-left: 25px;
text-align: left;
text-decoration: none;
display: inline-block;
}

此外,br标签应该写成<br> , 不是 </br>

.content a:link,
.content a:visited {
background-color: #f44336;
color: white;
width: 400px;
padding-left: 25px;
text-align: left;
text-decoration: none;
display: inline-block;
}
<div class="content">
<a href="semI">SEM I </a>
<br>
<br>
<a href="semII">SEM II </a>
</div>

关于html - 如何修改仅属于特定类的链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41393585/

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