Unable to change input placeholder color in CSS
I have an input tag in my HTML,
<input placeholder="enter email" />
I want to the change the color of placeholder text, so I tried like below,
<input style="color:pink;" placeholder="enter email" />
But it is not working. How can I make it work?
1 Answer
4 years ago by Divya
To change the props of placeholder you can use the placeholder
pseudo class
::placeholder {
color: pink;
}
4 years ago by Divya