input框type值是number时右侧出现的调节按钮如何隐藏

436 阅读1分钟

input框type值是number时,右侧会出现的调节按钮,如果不需要显示出来

25513560-7f3f4177b2b2964f.jpg

添加以下css代码即可:

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