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

symfony - InvalidConfigurationException in SecurityExtension.php line 429: No authentication listener registered for firewall "secured_area" -

angular ui router - 10 digest iterations reached in angularjs when using $state.go -

javascript - Handling constructor related functions while testing with mocha and sinon -