Created
January 19, 2016 09:26
-
-
Save thierrypigot/573f0eaa491b8f688aa5 to your computer and use it in GitHub Desktop.
Style placeholder text color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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