Created
January 4, 2018 12:57
-
-
Save Neoglyph/225a125c4d7ba033edc9dcb917cf874f to your computer and use it in GitHub Desktop.
Remove chrome autofill input background
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
/* Change background color */ | |
input:-webkit-autofill { | |
-webkit-box-shadow: 0 0 0 30px white inset; | |
} | |
/* Change text color */ | |
input:-webkit-autofill { | |
-webkit-text-fill-color: black !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment