Sunday, May 15, 2011

How to remove the border

Tricks of CSS
How to remove the border (blue) around link images?

Just in CSS you can reset the property "border " and apply it to images (<img>) contained in links (<a>):

a img {border: 0;}
or equivalent:
a img {border: none;}