如何在链接图像下停止边框?

时间:2012-11-05 11:15:29

标签: html css3

我的大多数html文本链接定义为:

a:hover {text-decoration:none; border-bottom:2px dotted #DB8D41}

但我也有http://communitychessclub.com/rabren/的链接图片。我不希望在这些图像下显示“border-bottom:2px dotted#DB8D41”。

很明显,以下内容不起作用:

a:hover img {border:none}
img, img:active { border: none }

有人有解决方案吗?

1 个答案:

答案 0 :(得分:1)

这似乎有效:http://jsfiddle.net/44Pwr/

HTML

<div><a href=#"><img src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif"></a><p>This is <a href="#">another link</a></p></div>

CSS

body { padding: 10px; background: #003; color: #999; }

a:link, a:visited { border-bottom: 1px solid #009; text-decoration: none; color: #CCC; }

a:hover, a:active { border-bottom: 1px solid #CCC; text-decoration: none; color: #CCC; }

a > img { display: block; border-bottom: 0; }