我的HTML:如何將標籤更改爲藍色?
<tr class="footer">
<td colspan="6">
<div class="quicklinks">
<span class="footer_link">
<span class="new">
<a href="www.google.com">
<img title="mylink" src="" alt="mylink">My link</a>
</span>
</span>
</div>
</td>
和CSS:
a:link {
color: red;
}
a:hover {
color: green;
}
a:active {
color: green;
}
a:visited {
color: red;
}
a .footer_link {
color: blue;
}
這裏有一個fiddle。如何通過.css將我的鏈接變成藍色?順序是什麼,無論我寫入多少物業,就像.footer .footer_link
它不會變成藍色。我也試過用!important
但沒有改變。
在此先感謝!
AHHHHH謝謝! – Tom
Paul沒問題。如果你正在嘗試學習CSS選擇器,我建議你看看這篇文章:http://code.tutsplus.com/tutorials/the-30-css-selectors-you-must-memorize--net-16048 –