Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Created January 5, 2014 12:46
Show Gist options
  • Save adikahorvath/8267772 to your computer and use it in GitHub Desktop.
Save adikahorvath/8267772 to your computer and use it in GitHub Desktop.
CSS pseudo placeholder
::-webkit-input-placeholder { color: black; }
::-moz-placeholder { color: black; }
:-moz-placeholder { color: black; }
:-ms-input-placeholder { color: black; }
:focus::-webkit-input-placeholder { color: transparent; }
:focus::-moz-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