DEV Community

Cover image for CSS :placeholder-shown class
Chris Bongers
Chris Bongers

Posted on • Originally published at daily-dev-tips.com

CSS :placeholder-shown class

Hey everyone, let's talk about placeholders. The wonderful addition to form elements.

Today we won't be talking about them as accessibility issues and hazards, but just on how to style the inputs that have them.

In CSS we can style the actual placeholder text by using the ::placeholder pseudo-element.

But did you know there is also a pseudo-class called :placeholder-shown? This will select the actual input field and style that, therefore we can all of a sudden add borders and stuff!

Our end result will be an input field that is styled based on the fact that the placeholder is shown. Once we type this styling should be removed.

CSS placeholder-shown

HTML Structure

Let's first start by creating a basic HTML to render two input fields in, once will have a placeholder and one will have a value.

<div class="container">
   <input type="text" value="I have a value" />
  <input type="text" placeholder="I have a placeholder" />
</div>
Enter fullscreen mode Exit fullscreen mode

CSS :placeholder-shown class

Oke let's first add some basic styling to our page:

body {
  min-height: 100vh;
  background: #efe9e7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  background: #dae0f2;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container input {
  font-size: 1.5rem;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
}
Enter fullscreen mode Exit fullscreen mode

By running this, we will get a basic form that will look like the image below.

CSS Basic form

Now how can we make the one where the placeholder is active render differently?

.container input:placeholder-shown {
  border: 5px dashed teal;
}
Enter fullscreen mode Exit fullscreen mode

Now we should see a dashed teal border, and once we put a value in it, that border should disappear!

::placeholder vs :placeholder-shown difference

To recap we can use a ::placeholder pseudo-element to change the actual placeholder text styling:

input::placeholder {
    color: teal;
}
Enter fullscreen mode Exit fullscreen mode

And we can use the :placeholder-shown pseudo-class to style the actual input styling.

input:placeholder-shown {
    border: 5px dashed teal;
}
Enter fullscreen mode Exit fullscreen mode

You can find a full demo to play with on this Codepen.

Browser Support

The main browser support this fully, of course, IE has to be a pain in the ass, I would suggest using this as a nice addition, but don't fully rely on it.

CSS :placeholder-shown support

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Top comments (0)