Skip to content

Instantly share code, notes, and snippets.

@Neoglyph
Created January 4, 2018 12:57
Show Gist options
  • Save Neoglyph/225a125c4d7ba033edc9dcb917cf874f to your computer and use it in GitHub Desktop.
Save Neoglyph/225a125c4d7ba033edc9dcb917cf874f to your computer and use it in GitHub Desktop.
Remove chrome autofill input background
/* Change background color */
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 30px white inset;
}
/* Change text color */
input:-webkit-autofill {
-webkit-text-fill-color: black !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment