How can I (with css) overwrite Chrome's default class for input:-internal-autofill-selected ?
Using body input:-internal-autofill-selected does display as being used, but the <input is still actually white instead of pink...
body input:-internal-autofill-selected {
background-color: pink !important;
}
This is how it looks in chrome, but as stated the background-color is still white
