While using Edge Browser, I encountered an issue where I was unable to change the input placeholder color.
The :-ms-input-placeholder
selector was not working on Edge, although it functioned properly on IE 10 and IE 11.
input:-ms-input-placeholder {
font-style:italic;
color: red;
background-color: yellow;
}
Is there a CSS workaround to successfully change the input placeholder color on Edge?