Skip to content

Instantly share code, notes, and snippets.

@yikuansun
Created April 28, 2023 15:48
Show Gist options
  • Save yikuansun/eea21ff160458262c279b8c7a3f51f09 to your computer and use it in GitHub Desktop.
Save yikuansun/eea21ff160458262c279b8c7a3f51f09 to your computer and use it in GitHub Desktop.
Make Firefox number inputs behave like Chrome
/* Make Firefox number inputs show/hide spinner arrows like in Chrome */
input[type=number] {
-moz-appearance: textfield;
}
input[type=number]:hover {
-moz-appearance: revert!important;
}
input[type=number]:focus {
-moz-appearance: revert!important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment