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
Post a Comment