我有这个HTML代码:
<form method="post">
<input class="field_a" name="name" type="text" placeholder="Enter your name here"><br />
<input class="field_a" name="email" type="email" placeholder="And your email is?"><br />
<input class="field_a" name="subject" type="text" placeholder="We need to know what your message is about"><br />
<textarea class="field_b" name="message" rows="10" cols="25" placeholder="Finally, the message.."></textarea><br />
<input class="field_c" name="send_mail" type="submit" value="Ready to send your message?">
</form>
&#13;
出于某种原因,我的占位符没有显示。对此的援助会很棒。
答案 0 :(得分:0)
我找到了为什么它没有工作的原因。
我有这个CSS:
*::-webkit-input-placeholder {
color: #fff;
}
*:-moz-placeholder {
/* FF 4-18 */
color: #fff;
}
*::-moz-placeholder {
/* FF 19+ */
color: #fff;
}
*:-ms-input-placeholder {
/* IE 10+ */
color: #fff;
}