Skip to content

Instantly share code, notes, and snippets.

@armand1m
Created March 12, 2017 17:26
Show Gist options
  • Save armand1m/f162d9151b9264e1157fdef7e8e9e830 to your computer and use it in GitHub Desktop.
Save armand1m/f162d9151b9264e1157fdef7e8e9e830 to your computer and use it in GitHub Desktop.
Removes webkit autofills horrible yellow color.
# Thanks to http://stackoverflow.com/questions/2781549/removing-input-background-colour-for-chrome-autocomplete
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
box-shadow: 0 0 0px 1000px white inset;
-webkit-box-shadow: 0 0 0px 1000px white inset;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment