Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created December 27, 2016 16:35
Show Gist options
  • Save Farmatique/3126c55123bb93e2b2277d445e3f55ca to your computer and use it in GitHub Desktop.
Save Farmatique/3126c55123bb93e2b2277d445e3f55ca to your computer and use it in GitHub Desktop.
Hide up/down arrows for input[type="number"]
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