<img> inside <a> gets blue border

Mr. Boy picture Mr. Boy · May 27, 2010 · Viewed 43.9k times · Source
<a href="index.html"><img src="image.png"/></a>

IE8 highlights the image with a blue border. I'm not sure what CSS is relevant here, is it just border? Can I use a single CSS style to turn it off, like:

a img {
  ...
}

Answer

Sarfraz picture Sarfraz · May 27, 2010

Use this css:

a img {
 border:none;
}