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>
: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; }
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">
/* 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;
}
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>
/* 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;
}
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>
/* 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);
}
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.
Top comments (17)
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? ;-)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.Thanks for the clarification!
Awesome article as always, Eleftheria! π―
Thank you!
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...
Thank you so much for sharing it! π
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?
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.Thank you for this note!
In fact this snippet can be refactored like this:
.alert:is(.success, .error, .warning) {
font-weight: bold;
border: 1px solid;
border-radius: 4px;
}
You can combine :is and :not.
You can also combine :not with older selectors like nth-child, last-of-type etc
Within the context of this article nothing mentioned about joint use of each selector
π€π
Amazing! Thanks for sharing :)
My pleasure! Thanks for reading.
Some comments may only be visible to logged-in visitors. Sign in to view all comments.