Ir al contenido principal

Desactivar Spinner en Input de tipo numérico


 /* Google Chrome */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Mozilla firefox */
input[type='number'] {
    -moz-appearance:textfield;
}

Comentarios