Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save daniloparrajr/22da0ad6159d50ae35e431ab603f5adc to your computer and use it in GitHub Desktop.
Save daniloparrajr/22da0ad6159d50ae35e431ab603f5adc to your computer and use it in GitHub Desktop.
Placeholder Color CSS
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color:#fff;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #fff;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #fff;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color:#fff;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment