在Chrome 42中为输入占位符(默认和焦点状态)设置样式

这个问题在这里已经有了答案:

  • 使用CSS 31答案更改HTML5输入的占位符颜色

  • 如果你有这样的逗号分隔选择器列表,并且浏览器甚至不能识别其中一个选择器,它将忽略该列表中的所有选择器。

    在你的例子中,Firefox的-moz前缀不会被Chrome识别。

    解决方法是为每个不同的前缀创建单独的规则。


    我认为这个代码将起作用:

    input[type="text"]::-webkit-input-placeholder {
       color: #fff;
    }
    
    链接地址: http://www.djcxy.com/p/12169.html

    上一篇: Styling input placeholder (default and focus state) in Chrome 42

    下一篇: Is there a way to change the color of an HTML5 textbox watermark?