Chrome supports the placeholder attribute on input[type=text] elements (others probably do too).

But the following CSS doesn't do diddly squat to the placeholder's value:

<style>
    input[placeholder], [placeholder], *[placeholder]
    {
        color:red !important;
    }
</style>
<input type="text" placeholder="Value" />

"Value" will still be grey (er, gray. whatever) instead of red.

Is there a way to change the color of the placeholder text?

p.s. I'm already using the jQuery placeholder plugin for the browsers that don't support the placeholder attribute natively.

link|improve this question

80% accept rate
29  
Quick heads-up (not a solution, just a FYI): if I recall correctly, input[placeholder] just matches <input> tags that have a placeholder attribute, it doesn't match the placeholder attribute itself. – pinkgothic Apr 9 '10 at 19:58
1  
Yah, the thought crossed my mind that this may be like trying to style an element's "title" attribute. So +1 for thinking alike! – David Murdoch Apr 9 '10 at 20:01
feedback

5 Answers

up vote 518 down vote accepted

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.

link|improve this answer
13  
I just realized that this single answer makes up 26% of your rep. Your're welcome. :-p – David Murdoch May 11 '11 at 14:41
4  
@David Murdoch Yeah, I still can’t believe it. I’m glad you asked this. :) – toscho May 11 '11 at 14:57
Don't forget to add textarea placeholder support as well! – philfreo Jun 16 '11 at 0:25
@philfreo I have added an example for both element types. – toscho Jun 16 '11 at 7:17
6  
@philfreo Uhm, is my explanation not good enough? If you combine the selectors the whole rule is ignored by both rendering engines due to the unknown selector. – toscho Jun 21 '11 at 1:13
show 14 more comments
feedback

You may also want to style textareas:

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #636363;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #636363;
}
link|improve this answer
feedback

In addition to toscho's answer I've noticed some webkit inconsistencies between Chrome 9-10 and Safari 5 with the CSS properties supported that are worth noting.

Specifically Chrome 9 and 10 do not support background-color, border, text-decoration and text-transform when styling the placeholder.

The full cross-browser comparison is here - http://blog.ajcw.com/2011/02/styling-the-html5-placeholder/

link|improve this answer
feedback

For Internet Explorer:

<style>
input:-ms-input-placeholder /* placeholder only style */   
{
    font-style:italic;        
    background-color:yellow;
    color:Red;
}
</style>

source: http://msdn.microsoft.com/en-us/library/ie/hh772745(v=vs.85).aspx
edit: only IE 10 supports this

link|improve this answer
MSDN doc you linked to, states its only supported in Internet Explorer 10. Still a good find, but not very useful till IE10 userbase becomes significant (we may be looking at a time-frame of years for that). – danishgoel Mar 14 at 20:44
feedback

You may find this helpful :

if you want both colorize placeholder on Chrome and Firefox, don't use the following merged rules (missing :) :

input::-webkit-input-placeholder, 
input:-moz-placeholder {
    color:red;
}

But instead :

input::-webkit-input-placeholder, 
input::-moz-placeholder {
    color:red;
}

See : Changing an input's HTML5 placeholder color with CSS does not work on Chrome

link|improve this answer
1  
Merging these two rules will not work in ether browser. They must be separate. Also, Webkit uses the "double colon" :: because it treats placeholder as a pseudo-element. Mozilla uses one colon : because it treats placeholder as a pseudo-class. – Chris Barr Apr 24 at 19:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.