Skip to content Skip to sidebar Skip to footer

Number Input Type Too Small

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 ma

Solution 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: Appearance of input type number on Firefox 48.0.1

Please update your Firefox to latest version.

Post a Comment for "Number Input Type Too Small"