How to remove the “Dotted Border” on clicking?

前端 未结 6 1475
终归单人心
终归单人心 2020-12-11 03:52

As you can see

\"alt

I want to somehow remove the dotted lines after the button has been clicke

6条回答
  •  隐瞒了意图╮
    2020-12-11 04:14

    use the below code

    a:active
        {
        outline: none;
        }
    

    try for other browsers also

    a:focus
    {
    -moz-outline-style: none;
    }
    a:focus { outline:none }
    

提交回复
热议问题