点击图片链接不显示虚线边框
用户在点击图片链接后,会在图片的周围留下一个虚线边框,虽然没有影响,但是我们还是可以通过CSS来解决这个不是问题的问题,呵呵……代码如下:
<style type="text/css">
a,area{blr:expression(this.onFocus=this.blur());}/*For IE*/
:focus{-moz-outline-style:none;}/*For Firefox*/
</style>
<a href="http://lovezoudan1987.blog.163.com/blog/#"><img src="http://www.zzsky.cn/images/logo.gif" border="0"></a>
a,area{blr:expression(this.onFocus=this.blur());}/*For IE*/
:focus{-moz-outline-style:none;}/*For Firefox*/
</style>
<a href="http://lovezoudan1987.blog.163.com/blog/#"><img src="http://www.zzsky.cn/images/logo.gif" border="0"></a>