Webkit は::-webkit-input-placeholder
、プレースホルダー テキストをターゲットにするために使用します。
.txt1::-webkit-input-placeholder:before {
color:#c2c3c3;
content:"Hey Brad,\A Tell us what's on your mind";
}
Firefox は:-moz-placeholder
プレースホルダー テキストをターゲットにするために使用しますが、次のようになります。
.txt1:-moz-placeholder:before {
color:#c2c3c3;
content:"Hey Brad,\A Tell us what's on your mind";
}
input
不要な Firefox のセレクターに追加しました。Firefox のセレクターの先頭には、コロンを 2 つではなく 1 つだけ含める必要があります。また、セレクターの後の余分なコロンを削除し、これらは不要::before
であるため、に変更することをお勧めします。:before
上記のコード例を使用すると、うまくいくはずです。お役に立てれば!ご不明な点がございましたら、お知らせください。
ソース: https://developer.mozilla.org/en-US/docs/CSS/:-moz-placeholder