Skip to content

Instantly share code, notes, and snippets.

@wall-e-08
Last active July 26, 2018 08:08
Show Gist options
  • Save wall-e-08/a3255ce540b8598314832f080f10ab10 to your computer and use it in GitHub Desktop.
Save wall-e-08/a3255ce540b8598314832f080f10ab10 to your computer and use it in GitHub Desktop.
input type number with no spinner
/* chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-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