oncode
8/25/2015 - 9:07 AM

Prevent ugly autofill background color for input fields in chrome.

Prevent ugly autofill background color for input fields in chrome.

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

/* or */

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
}