Created
November 20, 2018 13:58
-
-
Save alexisdiel/bb72c623547b08fd7e2ab03a277ab285 to your computer and use it in GitHub Desktop.
CSS - Removing background colour for Chrome autocomplete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-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