Html5中input的placeholder文字颜色设置

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

你可能感兴趣的:(css3)