Reputation: 24472
How I can remove an ugly input background who wildly appears only when the form is autocompleted?
Upvotes: 0
Views: 29
Reputation: 11506
input:-webkit-autofill
(with/without pseudo classes) will select autocompleted inputs.
-webkit-text-fill-color: color !important;
will set the text color
Upvotes: 1