yisainan / web-interview

我是齐丶先丶森,收集整理全网面试题及面试技巧,旨在帮助前端工程师们找到一份好工作!更多详见公众号「前端面试秘籍」
MIT License
2.66k stars 507 forks source link

[兼容性] 69. 去除链接虚线边框的问题 #931

Open qiilee opened 4 years ago

qiilee commented 4 years ago

问题说明: 当点击超链接后,ie6/7/8 ff 会出现虚线边框 ,而 opera、safari 没有虚线边框

解决方法: ie6/7 中 设置为 a {blr:expression_r(this.onFocus=this.blur()) } ie8 和 ff 都不支持 expression 在 ie8 、ff 中设置为 :focus { outline: none; }