Skip to content

Instantly share code, notes, and snippets.

@alexisdiel
Created November 20, 2018 13:58
Show Gist options
  • Save alexisdiel/bb72c623547b08fd7e2ab03a277ab285 to your computer and use it in GitHub Desktop.
Save alexisdiel/bb72c623547b08fd7e2ab03a277ab285 to your computer and use it in GitHub Desktop.
CSS - Removing background colour for Chrome autocomplete
@-webkit-keyframes autofill {
to {
background: inherit;
}
}
input:-webkit-autofill {
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment