Skip to content

Instantly share code, notes, and snippets.

@ceelsoin
Created January 5, 2021 17:03
Show Gist options
  • Save ceelsoin/63ff884aa471d56461b1a65441baea25 to your computer and use it in GitHub Desktop.
Save ceelsoin/63ff884aa471d56461b1a65441baea25 to your computer and use it in GitHub Desktop.
Remove chrome autofill blue background css trick

Autofill remove css trick

  • Just add this css on your form page.

(All forms cotinue autofilling, this css just remove blue background)

:-webkit-autofill, :-webkit-autofill:active, :-webkit-autofill:focus, :-webkit-autofill:hover {
transition: all 5000s ease-in-out 0s;
transition-property: background-color,color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment