I recently noticed that when I fill in a form on my chrome browser and select an address from the stored options, the input fields turn blue like this: https://i.sstatic.net/eKRlg.png
Is there a way for me to change the CSS so that the input fields don't get highlighted in blue? I tried using the code below but it didn't work:
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
background-color: transparent;
}