input框type值是number时右侧出现的调节按钮如何隐藏 小龙吖 2021-04-26 436 阅读1分钟 input框type值是number时,右侧会出现的调节按钮,如果不需要显示出来 添加以下css代码即可: input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; } input[type="number"] { -moz-appearance: textfield; }