input type 为 number 时去掉上下小箭头

<input type="number" ...>

<style>
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }
    input[type="number"]{
        -moz-appearance: textfield;
    }
</style>
原文地址:https://www.cnblogs.com/huahaiwujiang/p/11245607.html