设置input的placeholder样式


自定义input默认placeholder样式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
input::input-placeholder {
     color #fb4747 ;
}
 
input::-webkit-input-placeholder {
     color #fb4747 ;
}
 
input:-ms-input-placeholder {
     color #fb4747 ;
}
 
input:-moz-placeholder {
     color #fb4747 ;
}
 
input::-moz-placeholder {
     color #fb4747 ;
}
 
input:focus::-webkit-input-placeholder {
     color : rgba( 0 0 0 0 );
}
 
input:focus::-moz-input-placeholder {
     color : rgba( 0 0 0 0 );
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM