<input name="email" type="text" id="email" size="30" value="" placeholder="EMAIL"/>
<input name="phone" type="text" id="phone" size="30" value="" placeholder="PHONE"/>
I have two form that have id = "email". First form placeholder color is white. Second is black.
But, i dont know how to make this without changing email id. The problem is my second form placeholder color is white. I cannot see this placeholder because the form background is white too.
input#email:-moz-placeholder{
color: #999 !important;
}
input#email:-ms-input-placeholder{
color: #999 !important;
}