私は次の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)
}
クラスとのリンクには、別の色、たとえば赤を選択したいと思いますnestedlink
。誰かがそれを行う方法を教えてもらえますか?次のことを試しましたが、どれも機能しません。
初挑戦:
.nestedlink a:link, .nestedlink a:visited {
color: red;
}
2回目の試行:
.otherstufflinks .nestedlink a:link, .otherstufflinks .nestedlink a:visited {
color: red;
}
どこが間違っているのかわかりません。ご協力いただきありがとうございます。