Monday, 5 March 2012

Removing Dotted Border on Clicked Links Using CSS

css:---

/* hide the dotted lines around an element when it receives focus */

* { _noFocusLine: expression(this.hideFocus=true); } /* ie7 */
::-moz-focus-inner {border:0;}                         /* firefox */
:focus {outline:none;}                               /* ie8, chrome, etc */



Reference:

No comments:

Post a Comment