1. 程式人生 > >javascript每日進階1--修改input中placeholder的文字顏色

javascript每日進階1--修改input中placeholder的文字顏色

專案中經常會遇到要自定義input框中placeholder的文字的樣式的問題,這篇文章用來總結下

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