html - On Edge Browser, how to change input placeholder text color using CSS? -


on edge browser, couldn't able change input placeholder color.

:-ms-input-placeholder not working works fine on ie 10 & ie 11.

input:-ms-input-placeholder {     font-style:italic;             color: red;     background-color: yellow; } 

is there anyway make work using css?

from caniuse.com

::-webkit-input-placeholder (chrome/safari/opera)

:-ms-input-placeholder ie.

::-ms-input-placeholder edge (also supports webkit prefix)

note double colon syntax


Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -