Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Last active January 26, 2017 15:12
Show Gist options
  • Save Farmatique/fae576f52f1de24ab7388be2ce233cb2 to your computer and use it in GitHub Desktop.
Save Farmatique/fae576f52f1de24ab7388be2ce233cb2 to your computer and use it in GitHub Desktop.
remove arrows from input[type="number"]
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]{
-moz-appearance: textfield;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment