Last active
August 21, 2019 16:33
-
-
Save delphinpro/44daa165bb88634bd939 to your computer and use it in GitHub Desktop.
Remove buttons from input[type=number]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input::-webkit-outer-spin-button, | |
| input::-webkit-inner-spin-button { | |
| -webkit-appearance: none; | |
| } | |
| input[type="number"] { | |
| -moz-appearance: textfield; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment