Search code examples
htmlcssinternet-explorer-7

How to remove dotted border around the link in IE7


There is border around button and link when click.

enter image description here

enter image description here

How can I remove it?


Solution

  • It's ugly, but so are most IE fixes.

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