html - Input type number arrows bug with mozilla -


input

i removed regular input arrows following code:

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

it works in browsers newest mozilla firefox. doing wrong or why arrows wont dissapear?

nevermind figured out..

here solution:

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


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -