6fedcom.github.io icon indicating copy to clipboard operation
6fedcom.github.io copied to clipboard

输入框input类型为number时,去掉上下箭头方式

Open fxxqq opened this issue 7 years ago • 0 comments

<input type="number" ...>

<style>
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }
    input[type="number"]{
        -moz-appearance: textfield;
    }
</style>

fxxqq avatar Oct 22 '18 09:10 fxxqq