Skip to content

Instantly share code, notes, and snippets.

@sandesh-mq
Created September 8, 2013 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandesh-mq/6482652 to your computer and use it in GitHub Desktop.
Save sandesh-mq/6482652 to your computer and use it in GitHub Desktop.
Remove browser autofill and focus color
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