<input id="email" name="email" type="text" value="" placeholder="Email*" size="30">
I'm trying to use CSS to change the placeholder of the above input using only CSS w/o success.
Neither of these work:
input#email::-webkit-input-placeholder::before {
content:'(Optional) ' !important;
}
input#email::placeholder:before {
content:'(Optional) ' !important;
}