我有以下html
文字。
<ol class="otherstufflinks">
<li>
<a href="./pythonNotes/index.html">Python notes</a>
</li>
<li>
<a href="./figure.html">Cool figure made using</a>
<a href="http://mbostock.github.com/d3/" class="nestedlink">d3.js library.</a>
</li>
</ol>
css
我文件中的相关部分是:
a:link, a:visited {
color: steelblue;
text-decoration: none;
}
a:hover {
color: rgb(210,135,60);
}
.otherstufflinks > li,
.otherstufflinks a:link, .otherstufflinks a:visited
{
font-weight: normal;
color: rgb(75,75,75);
}
.otherstufflinks a:hover {
color: rgb(210,135,60)
}
我想为与 class 的链接选择不同的颜色,比如红色nestedlink
。如果有人能告诉我该怎么做,将不胜感激?我尝试了以下但没有一个工作。
第一次尝试:
.nestedlink a:link, .nestedlink a:visited {
color: red;
}
第二次尝试:
.otherstufflinks .nestedlink a:link, .otherstufflinks .nestedlink a:visited {
color: red;
}
我看不出我哪里错了。谢谢你的帮助。