Ответ 1
Для Mozilla < 19
<style type="text/css">
input:-moz-placeholder {
color: green;
}
</style>
Для Mozilla 19 и далее
<style type="text/css">
input::-moz-placeholder {
color: green;
}
</style>
Для Google Chrome
<style type="text/css">
input::-webkit-input-placeholder {
color: green;
}
</style>
Для IE 10
<style type="text/css">
input:-ms-input-placeholder {
color: green;
}
</style>