改变input placeholder默认值的颜色

input .blue ::-webkit-input-placeholder {
color: #2c899b
// webkit
}
input .blue :-moz-placeholder {
color: #2c899b
// moz4-18
}
input .blue ::-moz-placeholder {
color: #2c899b
// moz19+
}
input .blue ::-ms-input-placeholder {
color: #2c899b
// ie 10+

}奋斗

加上给对应的input加上类名即可。


猜你喜欢

转载自blog.csdn.net/ToBeBestPlayer/article/details/81028772
今日推荐