2

This may sound like a duplicate question, as the answer for 'normal' Bootstrap seems to be

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

as explained in this Question.

This doesn't work for AngularJS though. Does anyone have a Solution?

Community
  • 1
  • 1
LocalHorst
  • 1,048
  • 2
  • 11
  • 24

1 Answers1

2

try this works for both firefox and chrome

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

input[type=number] {
    -moz-appearance:textfield;
}
Rolwin Crasta
  • 4,219
  • 3
  • 35
  • 45