Hey,
I have this CSS-rule to get the "pushed-down" effect on pressed links:
a:active {
position: relative;
top: 1px;
}
Now this works as expected, however I want to write a rule that disable this on linked images as this one:
<a href="#"><img src="..." /></a>
Is it possible?
Thanks.