Is there a way to remove the increase/decrease arrows in input type="number" for textboxfor?
This can be done through CSS if you wish,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
}
<input type="number" />
Hope this helps!
Just these was enought for my code.
.input[type=number] {
&::-webkit-inner-spin-button{ display: none; }
-moz-appearance:textfield;
}