TheUnreal
TheUnreal

Reputation: 24472

Form input adds background when autocompleted

enter image description here

How I can remove an ugly input background who wildly appears only when the form is autocompleted?

Upvotes: 0

Views: 29

Answers (1)

4dgaurav
4dgaurav

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

Related Questions