I can't change the input placeholder color in Edge Browser.
:-ms-input-placeholder
is not working but works fine on IE 10
& IE 11
.
input:-ms-input-placeholder {
font-style:italic;
color: red;
background-color: yellow;
}
Is there any way to make it work using CSS?
-webkit
version I think that mightbe a fallback for IE-Edge? – Garda