How Can I Change The Color Of Input Placeholder

How can I change the input placeholder’s color via css

Here is the example to change the color of input placeholder via css

::-webkit-input-placeholder { /* set input placeholder color for WebKit, Blink, Edge */
    color:  black;
}
:-moz-placeholder { /* set input placeholder color for Mozilla Firefox 4 to 18 */
   color:   black;
   opacity:  1;
}
::-moz-placeholder { /* set input placeholder color for Mozilla Firefox 19+ */
   color:   black;
   opacity:  1;
}
:-ms-input-placeholder { /* set input placeholder color for Internet Explorer 10-11 */
   color:   black;
}
::-ms-input-placeholder { /* set input placeholder color for Microsoft Edge */
   color:   black;
}
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments