Created
July 24, 2013 10:17
-
-
Save DanAntFerrari/6069428 to your computer and use it in GitHub Desktop.
Disable webkit's appearance default browser style for input type=“number” and input type=“range”
This file contains 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
//Disable spin buttons on input type=“number” and input slider type=“range” in Webkit browsers | |
input[type=number]::-webkit-inner-spin-button, | |
input[type=number]::-webkit-outer-spin-button, | |
input[type=range]::-webkit-slider-thumb { | |
-webkit-appearance: none; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment