好的,所以我已经为我的链接设置了这样的样式:
a:link{ color: red; }
a:visited{ color: red; }
a:hover{ color: blue; }
a:active{ color: red; }
a { text-decoration: none; }
现在我还有一个页脚部分#footer,我想对其中的所有链接应用不同的颜色,如下所示:
#footer a:link{ color: green; }
#footer a:visited{ color: green; }
#footer a:hover{ color: yellow; }
#footer a:active{ color: green; }
问题是我还有一个与#footer 内的一类.button 的链接:
.button { color: cyan; background: gray; border: none; }
页脚内链接的样式覆盖了我的按钮的“颜色”,因此它变为绿色而不是青色。
我已将页脚链接的样式放在我的 CSS 底部,但它不起作用。
我知道我可以在按钮的“颜色”上使用“!重要”,但我只是想知道是否有其他方法可以解决这个问题。谢谢!