0

How do I stop a browser like Chrome inserting it's pale yellow background color on fields that it remembers values of?

I have a login form which looks very ugly when Chrome has remembered the username and password for.

Dallas Clark
  • 3,894
  • 3
  • 26
  • 33

1 Answers1

2

Use this CSS:

input:-webkit-autofill {
    color: #fff !important;
}
Sathyesh
  • 188
  • 2
  • 6