How to remove Firefox's dotted outline on BUTTONS as well as links?

前端 未结 25 1475
耶瑟儿~
耶瑟儿~ 2020-11-22 14:23

I can make Firefox not display the ugly dotted focus outlines on links with this:

a:focus { 
    outline: none         


        
25条回答
  •  迷失自我
    2020-11-22 15:23

    button::-moz-focus-inner { border: 0; }
    

    Where button can be whatever CSS selector for which you want to disable the behavior.

提交回复
热议问题