css_使用CSS修改HTML5 input placeholder颜色

 1 input::-webkit-input-placeholder { /* WebKit browsers */
 2     color:    #999;
 3 }
 4 input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
 5     color:    #999;
 6 }
 7 input::-moz-placeholder { /* Mozilla Firefox 19+ */
 8     color:    #999;
 9 }
10 input:-ms-input-placeholder { /* Internet Explorer 10+ */
11     color:    #999;
12 }

猜你喜欢

转载自www.cnblogs.com/wush-1215/p/10595085.html
今日推荐