Created
December 27, 2016 16:35
-
-
Save Farmatique/3126c55123bb93e2b2277d445e3f55ca to your computer and use it in GitHub Desktop.
Hide up/down arrows for 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 { | |
| /* display: none; <- Crashes Chrome on hover */ | |
| -webkit-appearance: none; | |
| margin: 0; /* <-- Apparently some margin are still there even though it's hidden */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment