input修改placeholder文字颜色

 1 <style>
 2         input::-webkit-input-placeholder{
 3             color:red;
 4         }
 5         input::-moz-placeholder{   /* Mozilla Firefox 19+ */
 6             color:red;
 7         }
 8         input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
 9             color:red;
10         }
11         input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
12             color:red;
13         }
14 </style>
原文地址:https://www.cnblogs.com/nh34546/p/14328656.html