Remove blue border from css custom-styled button in Chrome

前端 未结 22 1171
闹比i
闹比i 2020-11-22 17:10

I\'m working on a web page, and I want custom-styled

22条回答
  •  情话喂你
    2020-11-22 17:24

    Don't forget the !important declaration, for a better result

    button:focus {outline:0 !important;}
    

    A rule that has the !important property will always be applied no matter where that rule appears in the CSS document.

提交回复
热议问题