Number input type too small

青春壹個敷衍的年華 提交于 2019-12-25 09:15:38

问题


i have problem in input type number in html5, look at to my picture, in other browser that work fine for me but in firefox, the spinner is too small. Is there a generally way to make it better?


回答1:


You can remove the spinner on Firefox by adding following CSS rule

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

There is no way to change its appearance. Please note that the input validation still works.

On Firefox 48.0.1, it appears like this:

Please update your Firefox to latest version.



来源:https://stackoverflow.com/questions/39384042/number-input-type-too-small

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!