mozilla 的输入类型数字箭头错误

Input type number arrows bug with mozilla

我使用以下代码删除了常规输入箭头:

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

它适用于除最新的 mozilla firefox 以外的所有浏览器。我是不是做错了什么或者为什么箭头不会消失?

没关系我已经想通了..

解决方法如下:

input[type=number] {
    -moz-appearance:textfield;
}