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

cron - how to properly run Python script with crontab on every system startup -

elasticsearch - Is the order of operations guaranteed in a bulk update? -

Slow performance first queries on SQL Azure -