我在<a>
带有背景图像的标签上使用了特殊的链接效果:CSS。链接看起来不错,但该网站还包含很多<img>
链接,这些链接也获得了 CSS。
我目前正在用 jQuery 解决这个问题:$("img").parent().css("background", "none");
是否有任何正确的方法可以使用 CSS 来做到这一点,让这个 CSS 不影响标签。
代码:
a:link ,a:visited {
text-decoration: none;
background-image: url(/underline.png);
background-repeat: repeat-x;
background-position: bottom;
}