Skip to content

Instantly share code, notes, and snippets.

@mugukamil
Created May 24, 2014 02:02
Show Gist options
  • Save mugukamil/7033fbe523355ae9918d to your computer and use it in GitHub Desktop.
Save mugukamil/7033fbe523355ae9918d to your computer and use it in GitHub Desktop.
CSS: Remove default styling inputs
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
outline: 0;
box-shadow: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment