Style for placeholder input
How to styles for placeholder text in html ?
At here, I use input email have Id is “email”:
<input type="text" id="email" placeholder="Your Email" />
And to style for placeholder text of that input. Please use 4 line CSS as below:
input#email::-webkit-input-placeholder {color:red} //Chrome and Safari input#email:-moz-placeholder {color:red} //Firefox input#email::-moz-placeholder {color:red} //Firefox input#email:-ms-input-placeholder {color:red} //IE
Result:
This post is useful
ok thank you