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
  • 4,064
  • 3
  • 30
  • 36

1 Answers1

2

Use this CSS:

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