The KIRUPA orange logo! A stylized orange made to look like a glass of orange juice! Tutorials Books Videos Forums

Change the theme! Search!
Rambo ftw!

Customize Theme


Color

Background


Done

Styling Placeholder Text with CSS

by kirupa   |   16 March 2012

  Have questions? Discuss this HTML tutorial with others on the forums.

One of the things added in HTML5 is the ability to specify placeholder text inside your input and textarea elements. If you haven't encountered them before, placeholder text is basically a temporary label that describes what an input or textarea stands for:

placeholder text

Once you give an input field or textarea focus and start typing, the contents of your placeholder text disappear:

no more placeholder text

This tutorial really isn't about how to use placeholder text. For that, you should check out the placeholder text section on the Creating an Awesome Search Box tutorial. Instead, in this tutorial, you will learn how to style the placeholder text.

Let's go!

Styling the Placeholder Text

On the surface, this seems pretty simple. You have some text inside either an input or textarea element that needs some CSS attention. The challenge is that you do not have individual text elements that you can style directly. Instead, your placeholder text is very much an internal component of your input and textarea element.

The way you set the style of your placeholder text is by using the *-placeholder and *-input-placeholder pseudo selectors:

:-webkit-input-placeholder {
font-size: 12px;
font-style: italic;
color: #CCC;
}
:-moz-placeholder {
font-size: 12px;
font-style: italic;
color: #CCC;
}
:-ms-input-placeholder {
font-size: 12px;
font-style: italic;
color: #CCC;
}

The pseudo selectors are a bit different for each browser. For Safari and Chrome, you will use ::-webkit-input-placeholder, :-moz-placeholder for Firefox, and :-ms-input-placeholder for Internet Explorer 10. Opera doesn't support styling placeholder content...yet!

An example of this style applied to an input element with placeholder text looks as follows:

yay

[ the placeholder text is grayed out! ]

You can actually see this style being used in the header of this site!

Just a final word before we wrap up. If you have a question and/or want to be part of a friendly, collaborative community of over 220k other developers like yourself, post on the forums for a quick response!

Kirupa's signature!

The KIRUPA Newsletter

Thought provoking content that lives at the intersection of design 🎨, development 🤖, and business 💰 - delivered weekly to over a bazillion subscribers!

SUBSCRIBE NOW

Serving you freshly baked content since 1998!
Killer icons by Dark Project Studios

Twitter Youtube Facebook Pinterest Instagram Github