DEV Community

Samantha Ming
Samantha Ming

Posted on • Originally published at samanthaming.com

CSS :empty Selector

CodeTidbit by SamanthaMing.com

Often, we want to style elements that contain content. How about when an element has no children or text at all? Easy, you can use the :empty selector ๐Ÿคฉ

<p> </p><!-- NOT empty: note the blank space -->
<p></p><!-- YES empty: nothing inbetween -->
p::before {
  font-family: "FontAwesome";
  content: "\f240";
}

p:empty::before {
  content: "\f244";
}

p {
  color: silver;
}

p:empty {
  color: red;
}

What's considered empty?

When I first encounter this, there was a few confusion about what this property considers as empty. Let's stick with MDN's definition here:

The :empty CSS pseudo-class represents any element that has no children. Children can be either element nodes or text (including whitespace). Comments, processing instructions, and CSS content do not affect whether an element is considered empty.

Is empty

As long as there is no whitespace, it's an empty element.

<p></p>

Comment in between is also considered an empty element. As long as there is no whitespace.

<p><!-- comment --></p>

Not empty

Whitespace is considered not empty. Even in a new line, there is whitespace, so not empty! Emphasizing on this, cause I made the same mistake ๐Ÿ˜…

<p> </p>

<p>
<!-- comment -->
</p>

Having children element also counts as not empty

<p><span></span></p>

Examples using :empty

Okay, let's take a look at some real-life examples of using :empty.

Using :empty in Form Error Message

This is the example that made me first discovered :empty. So I wanted to prepend a โŒ icon on my error message. But the problem is the icon appeared even when I had no error message. But then no problem, I can just use the :empty to only append the icon when there IS an error message ๐Ÿ‘

CSS

.error:before {
  color: red;
  content: "\0274c "; /* โŒ icon */
}

HTML

<!-- No error message -->
<div class="error"></div>

<!-- Yes error message -->
<div class="error">Missing Email</div>

Output

Without Empty

With :empty

Using :empty in Alerts

Here's another example using :empty to hide empty state.

.alert {
  background: pink;
  padding: 10px;
}
.alert:empty {
  display: none;
}

HTML

<div class="alert"></div>
<div class="alert">Alert Message</div>

Output

Without empty

With :empty

Browser Support

Support on this is actually really good. It supports all the way to Internet Explorer 9 ๐Ÿ™Œ

Community Examples

I discovered :empty when I was trying to style empty error messages in a form. <div class="error"></div>. No JS required anymore, I can use pure CSS ๐Ÿ‘

๐Ÿ’ฌ What other use cases do you know?

  • @delusioninabox: A fix to remove janky spacing of empty paragraph tags, generally from user-created content. ๐Ÿ˜…

  • @hkfoster: Iโ€™ve used it to squash any number of randomly generated selectors that I canโ€™t weed out on the templating side. ๐Ÿ‘

  • @sumurai8: Removing padding from empty paragraphs

  • @_ottenga: Nice for notification dot (if empty is not visible, if has some number - for example - is red with the number inside)

  • @stephenjbell: li:empty { visibility:hidden; } Let an empty list item act as kind of a paragraph break (no bullet) in the middle of a list.

Community Input

  • @bourhaouta: One more thing about :empty it doesn't select elements that contain whitespace, in the other side we have :blank but it's not well supported yet ๐Ÿ˜”

  • @link2twenty: I love seeing little known features like this getting some spotlight! It's probably worth noting when the level 4 selectors roll out white space will be included as empty ๐Ÿ™‚.

Resources


Thanks for reading โค
Say Hello! Instagram | Twitter | Facebook | Blog | SamanthaMing.com

Top comments (10)

Collapse
 
link2twenty profile image
Andrew Bone

I love seeing little known features like this getting some spotlight! It's probably worth noting when the level 4 selectors roll out white space will be included as empty ๐Ÿ™‚.

The :empty pseudo-class represents an element that has no children except, optionally, document white space characters.

drafts.csswg.org/selectors-4/#the-...

Collapse
 
samanthaming profile image
Samantha Ming

Oh crazy! Thatโ€™s a game changer! Let me add that to my notes, thank you for sharing ๐Ÿ˜Š๐Ÿ‘๐Ÿ‘

Collapse
 
okumurakengo profile image
ๅฅฅๆ‘ๅฅๅพ • Edited

I did not know. Thank you very much !

also :not and :empty can be used to hide empty state ๐Ÿ˜€

<style>
.alert:not(:empty) {
  background: pink;
  padding: 10px;
}
</style>
<div class="alert"></div>
<div class="alert">Alert Message</div>

Thanks!
ย 

Collapse
 
samanthaming profile image
Samantha Ming

Nice! that's an awesome application of it ๐Ÿ‘

Collapse
 
jlabs profile image
jlabs • Edited

I've used this recently within ul that show's a message when the ul has no children - the list was populated via JS.

Collapse
 
samanthaming profile image
Samantha Ming

It use to be that designers would had to hand this back to developers to fix this JS. Now we're empowering designers to make these fixes with just CSS. Pretty neat! (but JS developers should probably fix these empty population of these elements ๐Ÿ˜…)

Collapse
 
madebyhector profile image
Hector Osborne Rodriguez

I have forgotten about this because the browser support wasnโ€™t ready a few years back. Glad to hear that it is making improving.

Collapse
 
samanthaming profile image
Samantha Ming

Support definitely has improved! And I'm happy that it did ๐Ÿ‘

Collapse
 
kayla profile image
Kayla Sween

I wasn't really aware there was a :empty pseudo-class, but I never went looking for it either.๐Ÿ˜… I can think of a few instances in my applications where this will come in handy! Thanks for sharing!

Collapse
 
samanthaming profile image
Samantha Ming

YES! you're very welcome! and don't hesitate to jump back here to share with us your use-case, always cool to see how others apply this ๐Ÿ˜Š