最佳答案
Chrome支持占位符属性 oninput[type=text]
元素(其他人可能也支持)。
但是以下CSS对占位符的值没有任何影响:
input[placeholder], [placeholder], *[placeholder] {color: red !important;}
<input type="text" placeholder="Value">
But Value
will still remain grey
instead of red
.
Is there a way to change the color of the placeholder text?