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

前端 未结 25 1166
耶瑟儿~
耶瑟儿~ 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:14

    Simply add this css for select box

    select:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #000;
    }
    

    This is working fine for me.

提交回复
热议问题