How to remove dotted border around active hyperlinks in IE8 with CSS

前端 未结 12 1636
囚心锁ツ
囚心锁ツ 2020-11-28 06:31

Active hyperlink texts are highlighted with dotted border. When using effects on such hyperlinks (fadeIn/fadeOut) it produces strange effects. How do I disable/remove the do

12条回答
  •  独厮守ぢ
    2020-11-28 07:21

    Be careful. The dotted-border is a valuable part of keyboard-browsing. It highlights which link will be clicked.

    a:active { outline: none; }
    

    Author Nathan Smith gives a more thorough discussion of this, and various related issues on his blog.

提交回复
热议问题