css

Remove (WebKit) Chrome browser autofill background color CSS

Remove the (WebKit) Chrome browser's autofill-background-color (CSS)

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    /* -webkit-box-shadow: 0 0 0 40px white inset !important; */
    -webkit-box-shadow: 0 0 0 0 rgba(white,0.0) inset !important;

}
input:-webkit-autofill {
    -webkit-text-fill-color: yellow;
}
Was this helpful?