I have a link like:
HTML:
<a href="#" title=""> <img src="stack.png" alt="" title="" /> stackoverflow </a>
CSS:
a { text-decoration: underline}
I want to remove the underline from the image.
I tried:
a img {text-decoration:none}
But it not works.
BS:
I can do that if I added a display:block to img but that can cause a damage for the rest of the site, also I won't add a specific class for this section.
Could I do that with jQuery?
aandimgattributes – Naiimim Jun 7 '11 at 16:10