Placeholder color not working in IE 9 only. Other browser working fine. Can anybody tell me which css required for IE9? I used one div -> select element -> default input field .Want to change text color of place holder. I search on Google it will work on IE 10+
input:-ms-input-placeholder {
color:#27AE60 !important;
}
<input type="text" ng-model="inputText" placeholder="somePlaceholder" />
Original CSS selector:
#dropdown_ID div.selectize-control div.selectize-input input:-ms-input-placeholder {
color:#27AE60 !important;
}