Little issue on my app, placeholders aren't present on Internet Explorer 11.
I tried the CSS sample below but without any success.
:-ms-input-placeholder { /* IE10–11 */
color: #ccc !important;
font-weight: 400 !important;
}
::-ms-input-placeholder { /* Edge */
color: #ccc;
font-weight: 400;
}
::placeholder { /* CSS Working Draft */
color: #ccc;
font-weight: 400;
}
Any suggestions on how to resolve this issue ?