WebKit only:
input::-webkit-input-placeholder {}
But be aware: This is not a permanent solution. The discussion about the best implementation is still going on.
Update 30.Sept. 2010
Mozilla (Firefox 4) now supports :-moz-placeholder:
Note that Mozilla is using a pseudo class, not a pseudo element, therefore it has to be just one double colon, not two.
input:-moz-placeholder {}
You have to use two rules, because user agents are required to ignore a rule with an unknown selector. Since WebKit doesn’t know the proprietary Mozilla selector and vice versa, you have to write:
input::-webkit-input-placeholder {
color: #999;
}
input:-moz-placeholder {
color: #999;
}
To catch input and textarea just drop the element selector:
::-webkit-input-placeholder {
color: #999;
}
:-moz-placeholder {
color: #999;
}
Update 01.Jan. 2011
Opera 11 supports placeholders too, but you cannot style it (yet), and it is limited to input elements. In Opera 11.50 textarea placeholders are implemented too.
Be careful to avoid bad contrasts. Note that placeholder text is just cut off if it doesn’t fit – size your input elements in em and test them with big minimum font size settings.
In WebKit you can add:
[type="search"]
{
-webkit-appearance: textfield;
}
Otherwise, the pseudo element may not fill the entire element, and your background-color looks odd.
I’ll update this post whenever I find something new.