Trying to apply style to placeholder I faced a problem, that in IE (all versions) placeholder text color doesn't apply. It only takes the color of text input
:-ms-input-placeholder {
color: white;
}
input {
color:black;
}
after applying this code the color of a placeholder will be black.
What can be the problem?