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

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

    No need to define a selector.

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

    However, this violates accessibility best practices from the W3C. The outline is there to help those navigating with keyboards.

    https://www.w3.org/TR/WCAG20-TECHS/F78.html#F78-examples

    0 讨论(0)
提交回复
热议问题