Skip to content

Instantly share code, notes, and snippets.

@hakeempazhu
Created August 23, 2017 07:19
Show Gist options
  • Save hakeempazhu/10b554196342d71db39b138b6353ac34 to your computer and use it in GitHub Desktop.
Save hakeempazhu/10b554196342d71db39b138b6353ac34 to your computer and use it in GitHub Desktop.
Hide input type number cursor or arrows in all browsers with css
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-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