How to get rid of box around linked image

与世无争的帅哥 提交于 2020-01-14 05:00:09

问题


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.



来源:https://stackoverflow.com/questions/2466590/how-to-get-rid-of-box-around-linked-image

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!