Remove dotted outline from range input element in Firefox

前端 未结 10 958
忘了有多久
忘了有多久 2020-12-08 12:33

Firefox, since version 23, natively supports the element, but I couldn’t figure out how to remove the dotted outline. The following

10条回答
  •  伪装坚强ぢ
    2020-12-08 13:28

    I have little research in config section of mozilla add this too

     :-moz-any-link:focus {
        outline: none;
     }
     a, a:active, a:visited, a:hover {
        outline: 0;
    }
    

    then

    :focus {
       outline: none;
    }
    

    then

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

提交回复
热议问题