Created
August 16, 2013 15:54
-
-
Save kentcdodds/6251096 to your computer and use it in GitHub Desktop.
Hide spin buttons in input type="number"
From http://stackoverflow.com/questions/3790935/can-i-hide-the-html5-number-inputs-spin-box
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; | |
-moz-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