Skip to content

Instantly share code, notes, and snippets.

@sandeshdamkondwar
Created September 8, 2013 07:31
Show Gist options
  • Save sandeshdamkondwar/6482667 to your computer and use it in GitHub Desktop.
Save sandeshdamkondwar/6482667 to your computer and use it in GitHub Desktop.
Remove box shadow of input element and add your own.
input:-webkit-autofill {
-webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
-webkit-text-fill-color: #333;
}
input:-webkit-autofill:focus {
-webkit-box-shadow: /*your box-shadow*/,0 0 0 50px white inset;
-webkit-text-fill-color: #333;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment