<img> inside <a> gets blue border

css, html, internet-explorer-8

Solution

Use this css:

a img {
 border:none;
}

Problem

``` <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 { ... } ```

Original source