使用css修改input的文字提示语颜色

使用css修改input的文字提示语颜色 修改input的placeholder的颜色

<style>
    /* Safari,Chrome WebKit browsers */ 
    input::-webkit-input-placeholder {
        color: #ccc;
    }
    /* 火狐 Mozilla Firefox 4 to 18 */ 
    input:-moz-placeholder {
        color: #ccc;
    }
    /* 火狐 Mozilla Firefox 19+ */ 
    input::-moz-placeholder {
        color: #ccc;
    }
    /* Internet Explorer 10+ */ 
    input:-ms-input-placeholder {
        color: #ccc;
    }
</style>