HTML & CSS Tip of the Week

The :has() pseudo-selector

Published on


For the longest time, people were asking for a parent selector in CSS, and at first glance, that’s what :has() is, but it’s also a lot more than that.

It definitely can be a parent selector, though.

For example, you can select the direct parent of any element that has a form in it like this:

:has(> form) {
  ...;
}

But it’s much more than just a parent selector, because we can use it to select elements based on what comes after them:

.title {
  margin-block-end: 2rem;
}

.title:has(+ .subtitle) {
  margin-block-end: 0.5rem;
}

Or, we can select all the siblings of an element:

.gallery:has(> img:hover) > img:not(:hover) {
  filter: grayscale(1);
}

And so much more.

If you haven’t experimented with :has() yet, I really would encourage you to see what it can do, because it opens up a lot of really awesome possibilities.

If you’d like to read about it in more detail, including some interactive examples, here are some great posts:

And I’ve made a few videos exploring what you can do with it as well: