Remove dotted outline from range input element in Firefox

前端 未结 10 954
忘了有多久
忘了有多久 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:26

    Here comes the solution

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

提交回复
热议问题