Customize Increment Arrows on Input Field

We can remove the increment arrows on Input field by using CSS property as

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

Leave a comment

Your email address will not be published. Required fields are marked *