Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created January 19, 2016 09:26
Show Gist options
  • Save thierrypigot/573f0eaa491b8f688aa5 to your computer and use it in GitHub Desktop.
Save thierrypigot/573f0eaa491b8f688aa5 to your computer and use it in GitHub Desktop.
Style placeholder text color
.fl-form-field input[type="text"]::-webkit-input-placeholder { /* Safari, Chrome and Opera */
color: orange;
}
.fl-form-field input[type="text"]:-moz-placeholder { /* Firefox 18- */
color: orange;
}
.fl-form-field input[type="text"]::-moz-placeholder { /* Firefox 19+ */
color: orange;
}
.fl-form-field input[type="text"]:-ms-input-placeholder { /* IE 10+ */
color: orange;
}
.fl-form-field input[type="text"]::-ms-input-placeholder { /* Edge */
color: orange;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment