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

前端 未结 25 1479
耶瑟儿~
耶瑟儿~ 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条回答
  •  萌比男神i
    2020-11-22 15:24

    There is many solutions found on the web for this, many of which work, but to force this, so that absolutely nothing can highlight/focus once a use the following:

    ::-moz-focus-inner, :active, :focus {
        outline:none;
        border:0;
        -moz-outline-style: none;
    }
    

    This just adds that little bit extra security & seals the deal!

提交回复
热议问题