Note: I asked a similar question 5 minutes ago, however this is not the same...
I have this CSS-rule to underline links without striking through any of the letter's "foots":
a:hover, a:focus, a:active {
color: #3b234a;
border-bottom: 1px #ccc solid;
}
Now this works as expected, however I want to write a rule that disable this behavior on linked images as this one:
<a href="#"><img src="..." /></a>
Is it possible?
Thanks.