Home / Admin / Remove the Arrows on the Numbers Field
Duplicate Snippet

Embed Snippet on Your Site

Remove the Arrows on the Numbers Field

Removes the arrows inside the Numbers form field.

<10
Code Preview
css
/* 
Remove the arrows in the Numbers form field
Original doc link: https://wpforms.com/developers/how-to-remove-the-arrows-on-the-numbers-field/
For support, please visit: https://www.facebook.com/groups/wpformsvip
*/
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}
  
input[type="number"] {
    -moz-appearance: textfield !important;
}

Comments

Add a Comment