Skip to content

Instantly share code, notes, and snippets.

@AFlorencia
Created July 18, 2018 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AFlorencia/5f9027638caf6088613edae0198090bc to your computer and use it in GitHub Desktop.
Save AFlorencia/5f9027638caf6088613edae0198090bc to your computer and use it in GitHub Desktop.
Change Autocomplete styles in Chrome
/* Change Autocomplete styles in Chrome*/
/*https://css-tricks.com/snippets/css/change-autocomplete-styles-webkit-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 {
border: 1px solid green;
-webkit-text-fill-color: green;
-webkit-box-shadow: 0 0 0px 1000px #000 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