30
使用CSS更改HTML5输入的占位符颜色
Chrome支持元素上的占位符属性input[type=text](其他可能也支持)。 但是以下CSS内容对占位符的价值没有任何作用: input[placeholder], [placeholder], *[placeholder] { color: red !important; } <input type="text" placeholder="Value"> 运行代码段隐藏结果展开摘要 Value仍将保留grey而不是red。 有没有办法改变占位符文本的颜色?
3973
css
html
placeholder
html-input