Skip to content

Instantly share code, notes, and snippets.

@magicianShiro
Last active March 31, 2017 08:06
Show Gist options
  • Save magicianShiro/19dab7f56a385c1a31cb06ea46f0eea2 to your computer and use it in GitHub Desktop.
Save magicianShiro/19dab7f56a385c1a31cb06ea46f0eea2 to your computer and use it in GitHub Desktop.
input 为number类型时 去掉 上下箭头
<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