如何摆脱链接图像周围的框

Ear*_*rlz 1 html css anchor image

我知道我之前已经解决了这个问题,但我记不起来或找不到解决办法,所以我在这里...

在Firefox 3.5中,此代码会在图像周围产生不合需要的蓝色边框.我如何摆脱这个蓝色边框?

<a style="text-decoration: none;" href="index.html">
    <img src="http://www.google.com/logos/stpatricksday10-hp.gif" />
</a>
Run Code Online (Sandbox Code Playgroud)

http://jsbin.com/umuzo3

Nic*_*sta 5

a img { border: none; }
Run Code Online (Sandbox Code Playgroud)

应该做的伎俩(在IE6中工作).