Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

CSS:

input[placeholder], [placeholder], *[placeholder] {
   color:red !important;
}

HTML:

<input type="text" placeholder="Value" />

Value will still remain grey 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.

share|improve this question
83  
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
I think that this question should be in the community wiki. – starbeamrainbowlabs Sep 18 '12 at 12:22

8 Answers

up vote 1222 down vote accepted

Implementation

There are three different implementations: pseudo-elements, pseudo-classes, and nothing.

IE up to version 9 and Opera up to version 12 do not support any CSS selector for placeholders.

The discussion about the best implementation is still going on. Note the pseudo-elements act like real elements in the Shadow DOM. A padding on an input will not get the same background color as the pseudo-element.

CSS selectors

User agents are required to ignore a rule with an unknown selector. See Selectors Level 3:

a group of selectors containing an invalid selector is invalid.

So we need separate rules for each browser. Otherwise the whole group would be ignored by all browsers.

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #999;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #999;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #999;
}

Usage notes

  • 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. Don’t forget translations: some languages need more room for the same word.
  • Browsers with HTML support for placeholder but without CSS support for that (like Opera) should be tested too.
  • Some browsers use additional default CSS for some input types (email, search). These might affect the rendering in unexpected ways. Use the properties -webkit-appearance and -moz-appearance to change that. Example:

    [type="search"] {
        -moz-appearance:    textfield;
        -webkit-appearance: textfield;
        appearance: textfield;
    }
    
share|improve this answer
9  
Don't forget to add textarea placeholder support as well! – philfreo Jun 16 '11 at 0:25
27  
@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
4  
Note also that although Webkit considers this to have rather strong specificity, Mozilla does not. You are likely to have to pop a few !importants in there to get things to show up. – dmnc Sep 5 '11 at 14:38
4  
@toscho: thanks for the great answer. I just needed a little demonstration of it "live", so your example can also be reached here: jsfiddle.net/Sk8erPeter/KyVXK. Thanks again. – Sk8erPeter Jan 27 at 1:39
4  
Firefox's placeholder appears to be defaulting with a reduced opacity. For anyone else hard-refreshing and wondering why the heck this doesn't appear to be working ("why is my white text still grey.."), use opacity:1 – jwinn Apr 3 at 18:33
show 20 more comments

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;
}
share|improve this answer

The short answer

<style>
#myInput::-webkit-input-placeholder {
  color: red;
}
#myInput:-moz-placeholder {
  color: red;
}
#myInput:-ms-input-placeholder {
  color: red;
}
</style>

where #myInput is the id of an input or textarea element.
Make sure to not group these rules (make them separate rules).

Demo: http://jsfiddle.net/R8aVY/

Explanation/details: see toscho's answer

share|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 '12 at 20:44

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.

share|improve this answer

How about this

<input type="text" value="placeholder text" onfocus="this.style.color='#000'; 
this.value='';" style="color: #f00;"/>

No CSS or placeholder, but you get the same functionality.

share|improve this answer
1  
And what if they tab to it? Should be on focus. – Muhd Feb 5 at 20:02
Thanks. changed it. – user1729061 Feb 16 at 2:54
2  
what happens if someone clicks again after writing something.. the original text they wrote will be gone! – Lucky Soni May 2 at 10:04
@LuckySoni you could do this, but I personally prefer the first one. <input type="text" value="placeholder text" onfocus="if(!this.haswriting){this.style.color='#000'; this.value='';}" onblur="if(!this.value){this.style.color='#f00'; this.value='placeholder text'; this.haswriting=false;}else{this.haswriting=true};" style="color: #f00;"/> – user1729061 May 18 at 18:25

In FF and IE, the normal input text color overrides the color property of placeholders. So, we need to

::-webkit-input-placeholder { 
    color: red; text-overflow: ellipsis; 
}
:-moz-placeholder { 
    color: #acacac !important; text-overflow: ellipsis; 
}
::-moz-placeholder { 
    color: #acacac !important; text-overflow: ellipsis; 
} /* for the future */
:-ms-input-placeholder { 
    color: #acacac !important; text-overflow: ellipsis; 
}
share|improve this answer

I don't remember where I've found this code snippet on the internet (it wasn't written by me, don't remember where I've found it, nor who wrote it).

$('[placeholder]').focus(function() {
        var input = $(this);
        if (input.val() == input.attr('placeholder')) {
            input.val('');
            input.removeClass('placeholder');
        }
    }).blur(function() {
        var input = $(this);
        if (input.val() == '' || input.val() == input.attr('placeholder')) {
            input.addClass('placeholder');
            input.val(input.attr('placeholder'));
        }
    }).blur();
    $('[placeholder]').parents('form').submit(function() {
        $(this).find('[placeholder]').each(function() {
            var input = $(this);
            if (input.val() == input.attr('placeholder')) {
                input.val('');
            }
        })
    });

Just load this javascript and then edit your placeholder with CSS by calling this rule:

form .placeholder {
   color: #222;
   font-size: 25px;
   /* etc */
}
share|improve this answer

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

share|improve this answer
11  
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 '12 at 19:21
2  
Thx ! and sorry for mistake :) – el_teedee Aug 8 '12 at 18:03

protected by Community Jul 5 '12 at 12:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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