🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › CSS › Guides › Nesting
CSS nesting - MDN Web Docs - Mozilla
November 18, 2025 - The CSS nesting module defines a syntax for nesting selectors, providing the ability to nest one style rule inside another, with the selector of the child rule relative to the selector of the parent rule.
🌐
LogRocket
blog.logrocket.com › home › native css nesting: what you need to know
Native CSS nesting: What you need to know - LogRocket Blog
June 4, 2024 - The color: green will be ignored since it is written after the nested selector. With CSS nesting, any style rules for the parent element should be declared before the nested selectors. This is one difference between native CSS nesting and nesting with preprocessors.
🌐
Reddit
reddit.com › r/webdev › is it safe to use native css nesting
r/webdev on Reddit: Is it safe to use native css nesting
February 8, 2024 -

I’ve been keeping an eye on native css nesting for a while now and I was wondering if you would consider it a safe feature to use yet.

Here is the support on can I use

https://caniuse.com/css-nesting

I’m talking about the clean version that doesn’t use the & prefix.

Clean css nesting without sass please tell me the future is here.

🌐
Pivale
pivale.co › home › resources › blog
Native CSS nesting is here. Is it time to ditch SCSS? | Pivale
August 13, 2025 - This is because the & selector is a live variable symbol in native CSS nesting and therefore needs to be referenced in CSS code in order for the browser to understand that you are nesting an element selector whereas in SCSS the preprocessor understood the nested syntax and compiled with the parent selector automatically prefixed.
🌐
Piccalilli
piccalil.li › blog › css-nesting-use-with-caution
CSS nesting: use with caution - Piccalilli
January 30, 2025 - Nesting was a solution to a developer problem, not an end-user problem. Nesting had no business being a native feature of the browser. As a feature of CSS pre-processors (or post-processors when you consider PostCSS) I think nesting is easier to swallow because it only impacts the developer.
🌐
Medium
medium.com › @canozcannn › a-guide-to-native-css-nesting-how-it-works-how-its-different-from-scss-and-when-to-use-each-one-16a00202e233
A guide to native CSS nesting: how it works, how it’s different from SCSS, and when to use each one. | by Can Özcan | Medium
April 24, 2025 - For years, SCSS has been the go-to tool for writing scalable and organized stylesheets — thanks largely to its powerful nesting capabilities. It allowed developers to group related rules, avoid repetition, and build semantic, modular hierarchies. Now that native CSS supports nesting out of the box, we can write more streamlined, dependency-free styles and rethink the way we structure CSS in modern web projects.
🌐
SitePoint
sitepoint.com › blog › css › an introduction to native css nesting
An Introduction to Native CSS Nesting — SitePoint
November 7, 2024 - This feature allows for nesting of child selectors inside their parent, simplifying syntax and saving typing time. While native CSS nesting is similar to Sass, there are subtle differences.
🌐
W3Schools
w3schools.com › cssref › sel_nesting.php
CSS Nesting (&) Selector
The CSS nesting (&) selector is used to apply styles for an element within the context of another element.
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › CSS › Guides › Nesting › Using
Using CSS nesting - MDN Web Docs
November 7, 2025 - The CSS nesting module allows you to write your stylesheets so that they are easier to read, more modular, and more maintainable. As you are not constantly repeating selectors, the file size can also be reduced.
Find elsewhere
🌐
BigDevSoon
bigdevsoon.me › home › pills › css native nesting
Native CSS Nesting | BigDevSoon Knowledge Pills
4 weeks ago - The & selector works just like ... classes inside a single block. Native CSS nesting means you can write scoped, readable styles without any build tool or preprocessor....
🌐
pawelgrzybek
pawelgrzybek.com › native-css-nesting-landed
Native CSS nesting landed | pawelgrzybek.com
March 19, 2023 - Luckily, the spec has changed, and the relaxed syntax for nesting identifiers is now possible, which is pretty much the same as in Sass. The & symbol is optional in front of an identifier (a type selector, in other words), and it is no longer mandatory as it was in the initial version of the specification. This is the very first version of the CSS Nesting specification.
🌐
Can I Use
caniuse.com › css-nesting
CSS Nesting | Can I use... Support tables for HTML5, CSS3, etc
CSS nesting provides the ability to nest one style rule inside another, with the selector of the child rule relative to the selector of the parent rule.
🌐
DEV Community
dev.to › ekeijl › native-css-nesting-now-supported-by-all-major-browsers-3925
Native CSS nesting now supported by all major browsers! - DEV Community
August 30, 2023 - Today, Firefox version 117 has been released, which adds support for native nesting of CSS rules!... Tagged with css, webdev.
🌐
Chrome Developers
developer.chrome.com › docs › css-ui › css-nesting
CSS Nesting | Chrome for Developers
March 8, 2023 - CSS nesting allows you to define styles for an element within the context of another selector.
🌐
Ishadeed
ishadeed.com › article › css-nesting
CSS Nesting
November 19, 2023 - We can use native CSS nesting to change a child’s styles based on where it lives.
🌐
Webinista
webinista.com › updates › native-css-nesting
Native CSS Nesting: A Primer
November 13, 2023 - Nesting refers to the ability to group related CSS rules inside of a parent ruleset. It speeds the process of writing CSS because you don't have to re-type selectors. It can also improve the readability and maintainability of CSS by grouping ...
🌐
Sass
sass-lang.com › blog › sass-and-native-nesting
Sass: Sass and Native Nesting
March 29, 2023 - In most cases, remaining a CSS superset trumps backwards compatibility. However, nesting is one of the oldest and most widely-used Sass features so we’re particularly reluctant to change it, especially in ways that would drop support for widely-used features like &-suffix that don’t have an elegant equivalent in native CSS.
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › CSS › CSS_nesting
CSS nesting - MDN Web Docs
November 3, 2025 - The CSS nesting module defines a syntax for nesting selectors, providing the ability to nest one style rule inside another, with the selector of the child rule relative to the selector of the parent rule.
🌐
Ben Frain
benfrain.com › where-the-f-is-native-css-nesting
Where the f*** is native CSS nesting? – Ben Frain
June 1, 2022 - Like, as soon as I read your proposal, it was one of those “A-ha!” moments where it seemed like such an obvious thing that should be natively supported by now. Great article! ... I understand that many people don’t mind using a preprocessor for CSS, but for some, it is a big issue. In order to use CSS nesting + hot reload in our Blazor project, we need to have a separate “dotnet watch” process executed manually, just running in the background when developing.