Created
September 17, 2019 15:05
-
-
Save metelidrissi/aecf7b1b512b3c4bb5846efe94e456dd to your computer and use it in GitHub Desktop.
Cambiar el color del placeholder en Contact Form 7 con CSS
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
::-webkit-input-placeholder { /* WebKit browsers */ | |
color: #000 !important; | |
opacity: 1; | |
} | |
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ | |
color: #000 !important; | |
opacity: 1; | |
} | |
::-moz-placeholder { /* Mozilla Firefox 19+ */ | |
color: #000 !important; | |
opacity: 1; | |
} | |
:-ms-input-placeholder { /* Internet Explorer 10+ */ | |
color: #000 !important; | |
opacity: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment