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不支持 */

 

你可能感兴趣的:(ie8)