我如何将占位符文本颜色更改为白色

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

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

  • 你可以使用::placeholder伪类。

    input {
      background-color: #907;
    }
    
    input::placeholder {
      color: #fff;
    }
    <input type="text" placeholder="Enter Description Here" />
    链接地址: http://www.djcxy.com/p/12165.html

    上一篇: How can i change the placeholder text color to white

    下一篇: Change read only background color based on the input of the element