Skip to content

Instantly share code, notes, and snippets.

@webinista
Created October 7, 2015 02:31
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 webinista/e77eb1e4a7a8fcf1bc9b to your computer and use it in GitHub Desktop.
Save webinista/e77eb1e4a7a8fcf1bc9b to your computer and use it in GitHub Desktop.
Faux placeholder clearing with CSS
:focus::-webkit-input-placeholder{
color: transparent;
}
:focus::-moz-placeholder {
color: transparent;
}
:focus:-ms-input-placeholder {
color: transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment