Hide Spinner in Input Number - Firefox 29

后端 未结 7 714
傲寒
傲寒 2020-12-02 04:22

On Firefox 28, I\'m using works great because it brings up the numerical keyboard on input fields which should only contain number

7条回答
  •  粉色の甜心
    2020-12-02 05:17

    In SASS/SCSS style, you can write like this:

    input[type='number'] {
      -moz-appearance: textfield;/*For FireFox*/
    
      &::-webkit-inner-spin-button { /*For Webkits like Chrome and Safari*/
        -webkit-appearance: none;
        margin: 0;
      }
    }
    

    Definitely this code style can use in PostCSS.

提交回复
热议问题