DEV Community

Cover image for CSS Selectors: Unlocking Advanced Selectors for Modern Web Design
Eleftheria Batsou
Eleftheria Batsou

Posted on • Originally published at eleftheriabatsou.hashnode.dev on

CSS Selectors: Unlocking Advanced Selectors for Modern Web Design

Hey everyone! Welcome to my blog. πŸ‘‹

Introduction

Today, we're diving into the world of advanced CSS selectors. These selectors, like :is(), :where(), :not(), and :has(), might seem a bit tricky at first due to their specificity rules or browser support issues, but they're super powerful tools for creating more efficient and dynamic CSS. Let's explore these selectors together, understand how they work, see them in action, and discuss some additional nuances.

What You'll Learn in This Article

  • Understanding Each Selector : Breaking down :is(), :where(), :not(), and :has().

  • Browser Support : Knowing which browsers support these selectors.

  • Specificity Insights : How these selectors affect CSS rule application.

  • Practical Examples : Real-world use cases to show how these selectors can simplify your CSS.

  • Best Practices : Tips for using these selectors effectively.

🌟 The :is() Selector

What is :is() ?

The :is() pseudo-class function allows you to apply styles to multiple selectors without repeating the same properties. It's particularly useful for grouping selectors with differing specificity.

Example:

<div class="alert success">Success message</div>
<div class="alert error">Error message</div>
<div class="alert warning">Warning message</div>
Enter fullscreen mode Exit fullscreen mode
:is(.alert.success, .alert.error, .alert.warning) {
    font-weight: bold;
    border: 1px solid;
    border-radius: 4px;
}

.alert.success { border-color: green; }
.alert.error { border-color: red; }
.alert.warning { border-color: orange; }

Enter fullscreen mode Exit fullscreen mode

Result: All alert types get a bold font and a border, with the color defined by their specific class.

πŸ’‘Tip: You can copy-paste all the examples on Codepen, to see the result(s) in action.

🌟 The :where() Selector

What is :where() ?

Similar to :is(), :where() groups selectors, but it has a specificity of 0, making it ideal for creating styles that are easy to override.

Example:

<button class="primary">Primary Action</button>
<input type="button" value="Secondary Action">
<input type="submit" value="Submit Form">
Enter fullscreen mode Exit fullscreen mode
/* Button styles with low specificity */
:where(button, input[type="button"], input[type="submit"]) {
    font-size: 1rem;
    padding: 0.5em 1em;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
}

/* Specific override for primary buttons */
button.primary {
    background-color: #007BFF;
    color: white;
}
Enter fullscreen mode Exit fullscreen mode

Result:

🌟 The :not() Selector

What is :not() ?

The :not() pseudo-class is used to exclude certain elements from a selection. It's great for applying styles to everything but a particular element or class.

Example:

<ul>
    <li class="done">Completed Task</li>
    <li>To Do</li>
    <li>Another Task</li>
</ul>

Enter fullscreen mode Exit fullscreen mode
/* Style all list items except those marked as 'done' */
li:not(.done) {
    background-color: #f0f0f0;
}

/* Darken the text for completed items */
li.done {
    color: #888;
}

Enter fullscreen mode Exit fullscreen mode

Result:

🌟 The :has() Selector

What is :has() ?

The :has() pseudo-class allows you to style an element based on what it contains. This selector is very powerful but has limited browser support at the time of writing.

Example:

<section>
    <h2>Video Section</h2>
    <video src="movie.mp4" controls></video>
    <img src="thumbnail.jpg" alt="Video Thumbnail">
</section>
<section>
    <h2>Text Only Section</h2>
    <p>Here's some text content without any media.</p>
</section>

Enter fullscreen mode Exit fullscreen mode
/* Style sections containing a video to have a dark background */
section:has(video) {
    background-color: #1a1a1a;
}

/* Make images inside sections with videos a little darker */
section:has(video) img {
    filter: brightness(0.8);
}

Enter fullscreen mode Exit fullscreen mode

Result:

Browser Support

  • :is() and :where(): Modern browsers generally support these, but always check the latest compatibility data.
  • :not(): Broadly supported, but complex selectors inside :not() might not work in older browsers.
  • :has(): Limited to recent versions of Safari with experimental support in other browsers. Use with caution or employ polyfills for broader compatibility.

Specificity Considerations

  • :is() and :where() inherit the highest specificity from the selectors they contain, with :where() having zero specificity itself.
  • :not()'s specificity is that of the selector it contains.
  • :has() can lead to complex specificity issues since it depends on the selectors within it, but it doesn't directly add to the specificity score.

Best Practices for Using Advanced Selectors

  • Use for DRY CSS : These selectors reduce repetition, making your CSS more maintainable.
  • Consider Performance : Complex selectors can impact performance, especially nested ones.
  • Fallback for Older Browsers : When using :has(), ensure you have fallbacks or use Feature Queries with @supports.
  • Avoid Overuse : While powerful, don't overcomplicate your selectors, as readability is key.

Practical Applications

  • Styling Components : Use :is() and :where() for common styles across different button classes or form elements.

  • Dynamic Layouts : :has() can be used for adaptive layouts where the presence of certain elements changes the parent's styling.

  • Responsive Design : Combine these selectors with media queries for even more dynamic and context-aware designs.

Conclusion

Advanced CSS selectors can streamline your stylesheets, making them cleaner and more efficient. Keep an eye on browser support, especially for :has(), and use these selectors wisely to enhance your CSS without sacrificing maintainability.

Happy coding, and may your CSS be as selective as it needs to be! πŸš€


πŸ‘‹ Hello, I'm Eleftheria, Community Manager, developer, public speaker, and content creator.

πŸ₯° If you liked this article, consider sharing it.

πŸ”— All links | X | LinkedIn

Top comments (17)

Collapse
 
leob profile image
leob

I knew about :not, but :has is interesting, didn't know about that one!

I'm a bit puzzled by :is and :where, because to me it seems that simple standard selectors (without :is or :where) work almost the same ... probably some subtlety that I'm missing? ;-)

Collapse
 
maxart2501 profile image
Massimo Artizzu

They're basically the same, functionally. The only difference is specificity, as Eleftheria said: the selectors that you put into :where() do not contribute to the specificity of the selector, whereas what you put into :is() does.

Collapse
 
leob profile image
leob

Thanks for the clarification!

Collapse
 
madza profile image
Madza

Awesome article as always, Eleftheria! πŸ’―

Collapse
 
eleftheriabatsou profile image
Eleftheria Batsou

Thank you!

Collapse
 
joodi profile image
Joodi

Thank you for sharing such an amazing and practical article! The explanations and examples are super clear and helpful. I’ve shared this post on my LinkedIn so others can benefit from it too. πŸ™ŒπŸŒŸ

linkedin.com/feed/update/urn:li:ac...

Collapse
 
eleftheriabatsou profile image
Eleftheria Batsou

Thank you so much for sharing it! 😊

Collapse
 
mudskipper_dev profile image
SeanImz

In this example:
:is(.alert.success, .alert.error, .alert.warning) {
font-weight: bold;
border: 1px solid;
border-radius: 4px;
}

Wouldn't this as written work the same without the :is() ?
Should it have read :is(alert) without the other classes?

Also the reference to :has being limited to recent versions of Safari seems well out of date as of the posting date, as it's in all the major browsers now?

Collapse
 
mariohernandez profile image
Mario Hernandez

I agree. In fact, you can write the same rule by simply using the .alert class since all of them have it. I also agree about :has. All major browsers now have full support for it.

Collapse
 
eleftheriabatsou profile image
Eleftheria Batsou

Thank you for this note!

Collapse
 
omidheidarzadeh profile image
Omid Heidarzadeh

In fact this snippet can be refactored like this:

.alert:is(.success, .error, .warning) {
font-weight: bold;
border: 1px solid;
border-radius: 4px;
}

Collapse
 
eshimischi profile image
eshimischi

You can combine :is and :not.

Collapse
 
pozda profile image
Ivan Pozderac

You can also combine :not with older selectors like nth-child, last-of-type etc

Collapse
 
eshimischi profile image
eshimischi

Within the context of this article nothing mentioned about joint use of each selector

Collapse
 
eleftheriabatsou profile image
Eleftheria Batsou

πŸ€“πŸ‘Œ

Collapse
 
yosvaldo profile image
Yeshua Osvaldo

Amazing! Thanks for sharing :)

Collapse
 
eleftheriabatsou profile image
Eleftheria Batsou

My pleasure! Thanks for reading.

Some comments may only be visible to logged-in visitors. Sign in to view all comments.