Skip to content

Instantly share code, notes, and snippets.

@andrewjamesford
Created May 26, 2012 09:43
Show Gist options
  • Save andrewjamesford/2793161 to your computer and use it in GitHub Desktop.
Save andrewjamesford/2793161 to your computer and use it in GitHub Desktop.
Disable default appearance of input elements in WebKit and iOS
input[type="search"] {
-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment