アクティブな入力のプレースホルダーの色を設定するにはどうすればよいですか?
::-webkit-input-placeholder:active {
color: blue;
}
:-moz-placeholder:active {
color: blue;
}
:-ms-input-placeholder:active {
color: blue;
}
私が求めているのは、https://twitter.com/の入力と同じ効果です..
これまでの解決策:
:focus::-webkit-input-placeholder {
color: blue;
}
:focus:-moz-placeholder {
color: blue;
}
:focus:-ms-input-placeholder {
color: blue;
}
</p>