HTML5 Placeholder Styling with CSS
4/25/2011: This attribute is not styleable as of Opera 11. Internet Explorer 10 will introduce placeholder
support.
Last week I showed you how you could style selected text with CSS. I've searched for more interesting CSS style properties and found another: INPUT
placeholder styling. Let me show you how to style placeholder text within INPUT
elements with some unique CSS code.
The CSS
Firefox employs a different pattern than Safari and Chrome. Each property name is self-explanatory though:
/* all */ ::-webkit-input-placeholder { color:#f00; } ::-moz-placeholder { color:#f00; } /* firefox 19+ */ :-ms-input-placeholder { color:#f00; } /* ie */ input:-moz-placeholder { color:#f00; } /* individual: webkit */ #field2::-webkit-input-placeholder { color:#00f; } #field3::-webkit-input-placeholder { color:#090; background:lightgreen; text-transform:uppercase; } #field4::-webkit-input-placeholder { font-style:italic; text-decoration:overline; letter-spacing:3px; color:#999; } /* individual: mozilla */ #field2::-moz-placeholder { color:#00f; } #field3::-moz-placeholder { color:#090; background:lightgreen; text-transform:uppercase; } #field4::-moz-placeholder { font-style:italic; text-decoration:overline; letter-spacing:3px; color:#999; }
You will only want to employ the most basic of styles to the placeholder. Color, font-style, and font-variant are probably the styles you will want to employ. Go too far with your placeholder styling and you may create the animated GIF of input styles. Note that Mozilla Firefox doesn't support placeholder styling until version 4.
Styling elements with the placeholder attribute is something you don't need to do but could be just another one of those small details that sets your website apart from other websites. Hopefully IE9 and Opera soon follow suit in allowing styling of placeholder text within INPUT elements...or expose their API for doing so!
PowerTools! has a fallback for older browsers if you want to use the placeholder property: http://cpojer.net/PowerTools
Not to be all “me too” in a blog comment, but I’d also suggest checking out this Formalize CSS/JS demo I put together…
http://host.sonspring.com/formalize/
If your has a different line-height (let’s say 20px with a 12px font-size), the actual value will display correctly in Googel Chrome (10.0.612.3 dev), but the placeholder won’t. Apparently (?) the line-height isn’t used for the placeholder (?). In Firefox (4b7) this works just fine.
this is awesome
hope you can give me hints
thanks
Something about this page is working my laptop harder than flash!
David, thanks for your tutorial, but you’ve mad a slight error with your mozilla code in your demo; the individual styles for mozilla must have only one colon, not two, like so:
Also not all the values you specify work in Chrome, specifically background, text-transform or text-decoration.
Do you know if these are deliberately unsupported by Chrome?
I’m only using one colon above. Am I missing something?
Hi David, I meant in your demo page – http://davidwalsh.name/dw-content/placeholder-style.php
^ I meant *unsupported* of course…
David:
Following up on John Catterfeld’s comment: the general declaration for Mozilla correctly using a single colon, but the field-by-field selectors use a double-colon and are ignored: I see all red placeholders in FireFox4.
Brilliant… just what I was looking for. Thanks!
code is here:
Enter the username
Great information. I’m wondering where you got the information that IE10 would not support placeholder at all. Can you confirm this and cite a source? Thanks in advance
It appears that Microsoft will now be supporting IE10 (http://msdn.microsoft.com/en-us/ie/hh272905). I’ll update the post.
For Firefox 7 you will want to drop the double colon and just use a single colon after input.
Like this:
align center doesn’t seem to have an effect on OSX Webkit, but works great on Windows Webkit… thoughts?
Seems that bundling webkit and moz properties like…
…does not work. They have to be called individually, I wonder why that is?
Hi Matt, you cannot comma separate the selectors because once a browser finds a selector that it doesn’t understand it ignores the whole block of selectors.
The variation in colon syntax is because webkit and mozilla have different ideas about what the placeholder text actually is.
Mozilla considers it to be merely a different interactive state, so it defines a pseudo-class that address that difference; hence the single-colon syntax.
Webkit consider it to be a separate pseudo-element, so it defines a pseudo-element to address a different piece of text; hence the double-colon syntax. So you can tweak the positional difference between the placeholder text and value simply by tweaking the padding or line-height using that pseudo-element selector:
Or whatever.
@Brothercake, I don’t think Matt was confused about the colons, but the fact that you can’t comma seperate the selectors into one rule.
Public test: http://newilk.com/testing/Placeholder_styling
As of IE10 preview, Internet Explorer is the only browser which supports all the following attributes (listed here http://blog.ajcw.com/2011/02/styling-the-html5-placeholder/):
Background color
Border
Color
Font size
Font style
Font weight
Letter spacing
Line height
Padding
Text align
Text decoration
Text transform
Really helpfull… Thanks
Great tip!!!
Nice! Thanks for tricks! Great HTML5! :)
Any word on Opera supporting this?
what others have said about there being a slight problem with the code on this page are correct.
The line
should be
Took me 5 minutes and a quick test to realise why firefox wasn’t styling correctly…
Thank you. I love you. I’d have never guessed that …
Hey, I’m just discovering placeholder text and it really feels like this is a godsend for clean UI. Knowing it can be styled makes it even better.
One question; currently clicking on the view demo link seems to load the correct URL, but that URL seems to load the example for the resizer handles blogpost. Was that your intention?
Be careful, in Firefox the placeholder opacity is not 1.
If you want a 100% black color for placeholder, please write :
thank you very much for the explanation sir …
Thank you! Worked as described, and saved me some effort.
i want to how to use text-align in placeholder
Dude you are awesome.i really want it badly. because its work in IE7 also. thanks a lot man.
@Rahul no it doesn’t ;)
I think the important technical thing to consider is that placeholder pseudos need to be separated and cannot be grouped, for some reason it is causing issue with FireFox:
Good:
Bad:
Hope this helps.