Last active
January 26, 2017 15:12
-
-
Save Farmatique/fae576f52f1de24ab7388be2ce233cb2 to your computer and use it in GitHub Desktop.
remove arrows 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[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