DEV Community

Cover image for :where :is CSS?
Mustapha Aouas
Mustapha Aouas

Posted on

:where :is CSS?

In this post we will talk about the not so new functional pseudo-class selectors :is() and :where().

We will see how they work in details, how they differ and when to use them to get the most out of these CSS features.

 

1. CSS :is

Let's start by the :is() pseudo-class selector. Then we will talk about :where() and the difference between them.

What is :is()?

Originally named :matches() and :any(), :is() is a functional pseudo-class selector. Meaning it is a keyword recognized by CSS that consists of a colon (:) followed by the pseudo-class name and a pair of parenthesis to define the arguments.

:is() takes as an argument a selector list separated by a comma and selects any element that can be selected by one of the selectors in that list. Let's see some use-cases.

Targeting parents

Suppose that we need to set the font-size of every paragraph element (<p>) located in a <section> or an <article>, we can use :is() to write that in a more compact form:

Image 2

Of course, in this example, we only removed one line, but we'll see later that we can remove much more using this to write more compact code.

Targeting children

Now let's say we need to target every <b> and <strong> inside an <article> to set their font-weight property, here's how we can use :is() to do it:

Image 3

ℹ️ Note
Notice the space between article and :is. It's important to keep it. We will talk about it further in the post.

Combining multiple :is()

If we wanted to target every every <b> and <strong> located inside a p or span that is located inside an <article> or a section it would look like this:

Image 4

In the example above we can see that it makes the code much more concise. It also makes it more readable and easier to maintain in my opinion.

Applying is() to the current element

Like we saw before, the space between before :is() is important. If we remove it, to have something like this: article:is(b) we would be asking for an article element that is also a b element witch is impossible.

We could use :is() to check if an element is for exemple the first-child or last-child in witch case we don't put the space before the :is():

Image 5

ℹ️ Note
:is() does not select pseudo-elements. Meaning some-element:is(::before, ::after) will not work.

is() is forgiving

Typically, if any of the selectors in a comma-separated list are invalid, all of them will be invalid and the entire expression will fail to match anything. This is not the case while using is():

Image 6

Specificity

:is() takes the specificity of its most specific selector. This means that :is(p, .some-class, #some-id) will have a specificity score of an ID (100 points) and :is(p, .some-class)will have specificity score of a class (10 points).

Image 7

To see why this is important to keep in mind, let's consider the example below:

Image 7.5

The rectangle above is orange because the specificity score of .wrapper .rect is 20 while the specificity score of :is(.rect, #some-id) is equal to the specificity of its most specific selector which is #some-id (100 points).

 

2. Every :where

Now that we are familiar with the is() pseudo-class selector, let's talk about where().

What is :where()?

where() is also a functional pseudo-class selector and works like is(). It takes as an argument a selector list separated by a comma and selects any element that can be selected by one of the selectors in that list. We can use it to target elements like we did with is() and it is also forgiving.

So why does it exists if it works the same as is()?
Well, because it doesn't work exactly the same.

The difference

The only difference is that the specificity of :where() is always zero. That's it.

So, if we take our previous examples, :where(p, .some-class, #some-id) will have a specificity score of zero. The same for :where(p, .some-class).

Image 8

When to use it?

Every time you want to keep the specificity low, which I think is a good thing to do most of the time.
So, for example, using :where() you can easily target an element by its ID without messing the specificity.

 

Browsers compatibility

Both these functional pseudo-class selectors are supported by all evergreen browsers:
Browsers compatibility
source 🔗

 
 

Wrap up

That's it for this post. We saw how to use :is & :where and the difference between them. But before you go and rewrite your entire CSS code base, remember that readability is what your team is used to, so it might be a good idea to discuss this before :)

Cheers!

Latest comments (37)

Collapse
 
thg_adept profile image
Thaigo Gomes

An amazing explanation for sure.

Collapse
 
hassan_dev91 profile image
Hassan

That's awesome

Collapse
 
mustapha profile image
Mustapha Aouas

Thank you Hassan!

Collapse
 
fruntend profile image
fruntend

Сongratulations 🥳! Your article hit the top posts for the week - dev.to/fruntend/top-10-posts-for-f...
Keep it up 👍

Collapse
 
ahmadalkhalil profile image
ahmad-alkhalil

great

Collapse
 
dev_geos profile image
Dev Geos

Thnaks for all. Good article

Collapse
 
raphaelnk profile image
Raphaël RANJAKASOA

Thanks for the lesson, it's so helpful

Collapse
 
mustapha profile image
Mustapha Aouas

🙏🙏

Collapse
 
pire_to_pire profile image
Antoine

Nice ! I like the illustrations, it really helps to understand easily.
Thanks for this post

Collapse
 
mustapha profile image
Mustapha Aouas

Thanks for the feedback Antoine I appreciate it!

Collapse
 
sas2k profile image
Sasen Perera

Nice illustrations, did you made it by hand or is there a software or website that creates them?

Collapse
 
zakariya09 profile image
Zakariya Khan

Nicely explained, I’ll try this for sure.

Collapse
 
mustapha profile image
Mustapha Aouas

Thanks Zakariya!
Glad to hear that

Collapse
 
sampadsarker profile image
Sampad Sarker

great explanation!!!

Collapse
 
mathesouzaf profile image
Matheus de souza

Simplified a lot with the illustrations

Collapse
 
mustapha profile image
Mustapha Aouas

Thanks for the feedback Matheus 🙏
Happy to hear that!

Collapse
 
ahamsammich profile image
Andre Hammons

Thank you for that explanation!

Collapse
 
mustapha profile image
Mustapha Aouas

My pleasure. Glad you liked it

Collapse
 
thinhdev97 profile image
thinhdev97

Thanks! It’s helpful and easy to understand.

Collapse
 
zerooeffect profile image
Damon Cahill

Thank you heaps. I've literally never used :is or where before. Going to try it out!

Collapse
 
nikhil_kumar_46ba34714d71 profile image
Nikhil Kumar

👏👏