Can anyone help me figure out how to get rid of this unsightly chrome background that appears when autofill is enabled? (See below for reference.)
I've attempted the following solutions:
*:focus {
outline: 0;
}
input:-webkit-autofill {
-webkit-box-shadow: none;
-webkit-text-fill-color: #fff !important;
}
button:focus, input:focus, a:focus {
text-decoration: none !important;
outline: none !important;
}
Unfortunately, none of these methods have been successful. Any assistance, suggestions, or insights would be sincerely appreciated.