How to change the color of placeholder when focus the input field? I use this css to set the default color, but how to change it on focus?
::-webkit-input-pl
Use star * to select everything
*
*::-webkit-input-placeholder { color: #999; } *:-moz-placeholder { color: #999; } *::-moz-placeholder { color: #999; } *:-ms-input-placeholder { color: #999; }