css修改input默认值颜色

input::-webkit-input-placeholder {
/* WebKit browsers */
color: #ccc;
}
input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #ccc;
}
input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #ccc;
}
input::-ms-input-placeholder {
/* Internet Explorer 10+ */
color: #ccc;
}

猜你喜欢

转载自www.cnblogs.com/n-p-c/p/10001653.html