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

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -