[转]IE8消除点击a标签时产生的虚线框

IE使用这三种方法消除链接虚线

1 <a href="#" hidefocus="true">aaa</a>
2 <a href="#" style="nofocus:expression(this.onFocus=this.blur())">aaa</a>
3 <a href="#" onfocus="blur()">aaa</a>

全局消除 CSS实现(实践可用)

1 a{blr:expression(this.onFocus=this.close());} /* 只支持IE,过多使用效率低 */
2 a{blr:expression(this.onFocus=this.blur());} /* 只支持IE,过多使用效率低 */
3 a:focus { -moz-outline-style: none; } /* IE不支持 */

 

posted @ 2014-04-14 11:13  randzhao  阅读(371)  评论(0)    收藏  举报