Skip to content

Instantly share code, notes, and snippets.

@pradishb
Created August 15, 2023 17:08
Show Gist options
  • Save pradishb/fcc11295aa3888f12e7c13ee1d737a13 to your computer and use it in GitHub Desktop.
Save pradishb/fcc11295aa3888f12e7c13ee1d737a13 to your computer and use it in GitHub Desktop.
Remove input autofill background
input:-webkit-autofill,
input:-webkit-autofill:focus {
transition: background-color 600000s 0s, color 600000s 0s;
}
input[data-autocompleted] {
background-color: transparent !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment