Skip to content

Instantly share code, notes, and snippets.

@ricardov03
Last active August 22, 2022 20:33
Show Gist options
  • Select an option

  • Save ricardov03/fdea62db87280cdc4c7093b8fb9eea3b to your computer and use it in GitHub Desktop.

Select an option

Save ricardov03/fdea62db87280cdc4c7093b8fb9eea3b to your computer and use it in GitHub Desktop.
Hiding field arrows in HTML5 Number form fields.
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment