Skip to content

Instantly share code, notes, and snippets.

@rqreyes
Last active February 2, 2016 22:09
Show Gist options
  • Save rqreyes/c8307bb52aa3c47d24b0 to your computer and use it in GitHub Desktop.
Save rqreyes/c8307bb52aa3c47d24b0 to your computer and use it in GitHub Desktop.
placeholder css
::-webkit-input-placeholder { /* Safari, Chrome and Opera */
color: #FFF;
}
:-moz-placeholder { /* Firefox 18- */
color: #FFF;
}
::-moz-placeholder { /* Firefox 19+ */
color: #FFF;
}
:-ms-input-placeholder { /* IE 10+ */
color: #FFF
}
::-ms-input-placeholder { /* Edge */
color: #FFF
}
:placeholder-shown { /* Standard one last! */
color: #FFF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment