how to remove dotted border around the link in IE7

前端 未结 13 1933
傲寒
傲寒 2020-12-25 13:12

There is border around button and link when click.

\"enter

13条回答
  •  情深已故
    2020-12-25 13:45

    CSS outline is not supported in IE7. That "browser" requires the following CSS expression:

    a {
        _noFocusLine: expression(this.hideFocus=true); 
    }
    

    It works also in newer versions.

提交回复
热议问题