Skip to content

Instantly share code, notes, and snippets.

@omariosouto
Created November 3, 2015 18:45
Show Gist options
  • Save omariosouto/30a92011f0640fa8a719 to your computer and use it in GitHub Desktop.
Save omariosouto/30a92011f0640fa8a719 to your computer and use it in GitHub Desktop.
Change Placeholder Color with CSS3
::-webkit-input-placeholder {
color: red;
}
:-moz-placeholder { /* Firefox 18- */
color: red;
}
::-moz-placeholder { /* Firefox 19+ */
color: red;
}
:-ms-input-placeholder {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment