Last active
March 31, 2017 08:06
-
-
Save magicianShiro/19dab7f56a385c1a31cb06ea46f0eea2 to your computer and use it in GitHub Desktop.
input 为number类型时 去掉 上下箭头
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
<input type="number" ...> | |
<style> | |
input::-webkit-outer-spin-button, | |
input::-webkit-inner-spin-button { | |
-webkit-appearance: none; | |
} | |
input[type="number"]{ | |
-moz-appearance: textfield; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment