Skip to content

Instantly share code, notes, and snippets.

@a-double
Created April 19, 2016 20:25
Show Gist options
  • Select an option

  • Save a-double/75495f6a8d60df461adf7c52cc43f303 to your computer and use it in GitHub Desktop.

Select an option

Save a-double/75495f6a8d60df461adf7c52cc43f303 to your computer and use it in GitHub Desktop.
Remove up/down buttons from numeric input
// For WebKit
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
-webkit-appearance: none;
}
// For Mozilla
input[type="number"] {
-moz-appearance: textfield;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment