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

前端 未结 12 1640
囚心锁ツ
囚心锁ツ 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:15

    i wanted to get this working for Button and this worked for me

    button { 
    
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;    
        background-color: transparent;
        noFocusLine: expression(this.onFocus=this.blur());
    }
    

提交回复
热议问题