JSFiddle - React, Tailwind, and code Playground
by erackson
HTML
<input type="text" name="nome" placeholder="Nome" /><br />
<input type="email" id="email" name="email" placeholder="E-mail" /><br />
<textarea name="mensagem" placeholder="Mensagem"></textarea>
CSS
::-webkit-input-placeholder { color:#4C4; }
input:-moz-placeholder { color:#4C4; }
textarea:-moz-placeholder { color:#4C4; }
#email::-webkit-input-placeholder{
color:#C4C;
background-color: #4C4;
text-transform: uppercase;
font-style: bold;
}
#email::-moz-placeholder {
color:#C4C;
background-color: #4C4;
text-transform: uppercase;
font-style: bold;
}