Remove Border from Image Links
For illustrating anchor links in some cases you might want to use bottom-border instead of a default text-decoration:underline. In order to achieve that, one would use the following CSS rule:
a { text-decoration:none; border-bottom:2px solid; }
which also adds border to the bottom of all linked images. In order to remove it, you would think that setting
a img { border:none; }
would be enough. Read more »