How to get rid of box around linked image

2019-05-30 10:52发布

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

2条回答
姐就是有狂的资本
2楼-- · 2019-05-30 11:12

Try setting image border to 0 px.

查看更多
forever°为你锁心
3楼-- · 2019-05-30 11:28
a img { border: none; }

Should do the trick (works in IE6).

查看更多
登录 后发表回答