input placeholder属性的样式修改

input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #909;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #909;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #909;
}
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #909;
}

 

你可能感兴趣的:(前端-css)