I want to change the color of specific place holder. I'm using many input fields for my project, the problem is that in some section I need the color grey for placeholder and in some section I need the color white. Here is my code:
::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color: #909; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #909; opacity: 1; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #909; opacity: 1; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #909; } But this code is implemented on all the input placeholders, and I don't need all the input placeholders in the same color.