how to remove dotted border around the link in IE7

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

There is border around button and link when click.

\"enter

相关标签:
13条回答
  • 2020-12-25 14:02

    You can preset it like that :

    :focus{
        outline:0; /*removes the dotted border*/
    }
    

    But remember (for accessibility reasons) to set the style "later" in your CSS file to something more visible. For example :

    a:focus, a:active{
        color:#ff5500; /*different color than regular*/
    }
    input[type=submit]:focus, input[type=submit]:active{
        background-color:#444; /*different color than regular*/
    }
    
    0 讨论(0)
提交回复
热议问题