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
Try this:
HTML
CSS
input[placeholder]:focus { color: red; }