CSS去除图片超链接虚线边框

来自:互联网
时间:2018-08-14
阅读:

标准浏览器去除图片超链接虚线边框

一般在全局定义a标签时加入outline:none;属性,如?a{outline:none; }

IE浏览器去除图片超链接虚线边框

在html中加入 hidefocus=”true” 如 <a href=http://www.freexyz.cn/ hidefocus=”true”>免费资源网</a>

顺便介绍一个IE6-7解决焦点点状线去除的技巧,我们有时候在ie6-7下使用

a:focus, *:focus {outline:none;}

无法除点状线,但有时候又需要去掉这样的点状线,那么有也有一个比较BT的解决方法,代码就一句:

a:focus, *:focus {
noFocusLine: expression(this.onFocus=this.blur());
}
返回顶部
顶部