公告
财富商城
积分规则
提问
发文
2019-02-01 20:59发布
Melony?
There is border around button and link when click.
could anyone help me solution to remove it.
You can do it with this code:
a:focus{ border: none; }
It's ugly, but so are most IE fixes.
a:focus, *:focus { noFocusLine: expression(this.onFocus=this.blur()); }
This will also work
a { outline-style:none; }
This would do the trick
a { outline:0; }
a:link{ outline-style: none; }`
Try this one
a:hover, a:active, a:focus { outline: 0; }
最多设置5个标签!
You can do it with this code:
It's ugly, but so are most IE fixes.
This will also work
This would do the trick
a:link{ outline-style: none; }`
Try this one