首页 > 编程 > HTML > 正文

XHTML教程:如何去除链接虚线框?

2024-08-26 00:14:16
字体:
来源:转载
供稿:网友
局部控制
 <a href="link1.htm" onfocus="this.blur()">link1</a>
 <a href="link1.htm" onfocus="this.close()">link1</a>
 <a href="link1.htm" hidefocus="true">link1</a>
 <a href="link1.htm" hidefocus="hidefocus">link1</a>

全局控制
 CSS实现
 a{blr:expression(this.onFocus=this.close());} /* 只支持IE,过多使用效率低 */
 a{blr:expression(this.onFocus=this.blur());} /* 只支持IE,过多使用效率低 */
 a:focus { -moz-outline-style: none; } /* IE不支持 */

 HTC实现 IE支持,页面载完才有效果
 把下面这段代码存为.htc为扩展名的文件

示例代码 [www.CuoXIn.com]
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表