Skip to content

Instantly share code, notes, and snippets.

@nizom333
Created March 9, 2021 16:49
Show Gist options
  • Save nizom333/2a73220abecda830129202a7d4153d26 to your computer and use it in GitHub Desktop.
Save nizom333/2a73220abecda830129202a7d4153d26 to your computer and use it in GitHub Desktop.
Change Autocomplete Styles in Browsers
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
-webkit-text-fill-color: white;
-webkit-box-shadow: 0 0 0px 1000px #373539 inset;
transition: background-color 5000s ease-in-out 0s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment