How to get rid of box around linked image

2019-05-30 10:34发布

问题:

I know I've solved this problem before, but I can't remember or find the solution, so here I am...

In Firefox 3.5 this code causes an undesirable blue border around the image. How do I get rid of this blue border?

<a style="text-decoration: none;" href="index.html">
    <img src="http://www.google.com/logos/stpatricksday10-hp.gif" />
</a>

http://jsbin.com/umuzo3

回答1:

a img { border: none; }

Should do the trick (works in IE6).



回答2:

Try setting image border to 0 px.