Ausnahme gefangen: SSL certificate problem: certificate is not yet valid 📌 CSS Nesting

🏠 Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeiträge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden Überblick über die wichtigsten Aspekte der IT-Sicherheit in einer sich ständig verändernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch übersetzen, erst Englisch auswählen dann wieder Deutsch!

Google Android Playstore Download Button für Team IT Security



📚 CSS Nesting


💡 Newskategorie: Programmierung
🔗 Quelle: developer.chrome.com

Before nesting, every selector needed to be explicitly declared, separately from one another. This leads to repetition, stylesheet bulk and a scattered authoring experience.

Before

.nesting {
color: hotpink;
}

.nesting > .is {
color: rebeccapurple;
}

.nesting > .is > .awesome {
color: deeppink;
}

After nesting, selectors can be continued and related style rules to it can be grouped within.

After

.nesting {
color: hotpink;

> .is {
color: rebeccapurple;

> .awesome {
color: deeppink;
}
}
}

Try this in browser.

Nesting helps developers by reducing the need to repeat selectors while also co-locating style rules for related elements. It can also help styles match the HTML they target. If the .nesting component in the previous example was removed from the project, you could delete the entire group instead of searching files for related selector instances.

Nesting can help with:

  • Organization
  • Reducing file size
  • Refactoring

Nesting is available from Chrome 112 and also available to try in Safari Technical Preview 162.

Getting started with CSS Nesting

Throughout the rest of this post,the following demo sandbox is used to help you visualize the selections. In this default state, nothing is selected and everything is visible. By selecting the various shapes and sizes, you can practice the syntax and see it in action.

A colorful grid of small and large circles, triangles and squares.

Inside the sandbox are circles, triangles, and squares. Some are small, medium or large. Others are blue, pink or purple. They're all inside the .demo containing element. The following is a preview of the HTML elements you'll be targeting.

<div class="demo">
<div class="sm triangle pink"></div>
<div class="sm triangle blue"></div>
<div class="square blue"></div>
<div class="sm square pink"></div>
<div class="sm square blue"></div>
<div class="circle pink"></div>

</div>

Nesting examples

CSS nesting allows you to define styles for an element within the context of another selector.

.parent {
color: blue;

.child {
color: red;
}
}

In this example, the .child class selector is nested within the .parent class selector. This means that the nested .child selector will only apply to elements that are children of elements with a .parent class.

This example could alternatively be written using the & symbol, to explicitly signify where the parent class should be placed.

.parent {
color: blue;

& .child {
color: red;
}
}

These two examples are functionally equivalent and the reason you have options will become clearer as more advanced examples are explored in this article.

Selecting the circles

For this first example, the task is to add styles to fade and blur just the circles inside the demo.

Without nesting, CSS today:

.demo .circle {
opacity: .25;
filter: blur(25px);
}

With nesting, there are two valid ways:

/* & is explicitly placed in front of .circle */
.demo {
& .circle {
opacity: .25;
filter: blur(25px);
}
}

or

/* & + " " space is added for you */
.demo {
.circle {
opacity: .25;
filter: blur(25px);
}
}

The result, all the elements inside .demo with a .circle class are blurred out and nearly invisible:

The colorful grid of shapes no longer has circles,     they're very faint in the background.
Try a demo

Selecting any triangles and squares

This task requires selecting multiple nested elements, also called a group selector.

Without nesting, CSS today, there are two ways:

.demo .triangle,
.demo .square
{
opacity: .25;
filter: blur(25px);
}

or, using :is()

/* grouped with :is() */
.demo :is(.triangle, .square) {
opacity: .25;
filter: blur(25px);
}

With nesting, here are two valid ways:

.demo {
& .triangle,
& .square
{
opacity: .25;
filter: blur(25px);
}
}

or

.demo {
.triangle, .square {
opacity: .25;
filter: blur(25px);
}
}

Both nesting options will use :is() under the hood as follows.

.demo :is(.triangle, .square) {
opacity: .25;
filter: blur(25px);
}

The result, only .circle elements remain inside .demo:

The colorful grid of shapes is left with only circles,     all other shapes are nearly invisible.
Try a demo

Selecting large triangles and circles

This task requires a compound selector, where elements must have both classes present in order to be selected.

Without nesting, CSS today:

.demo .lg.triangle,
.demo .lg.square
{
opacity: .25;
filter: blur(25px);
}

or

.demo .lg:is(.triangle, .circle) {
opacity: .25;
filter: blur(25px);
}

With nesting, here are two valid ways:

.demo {
.lg.triangle,
.lg.circle
{
opacity: .25;
filter: blur(25px);
}
}

or

.demo {
.lg {
&.triangle,
&.circle
{
opacity: .25;
filter: blur(25px);
}
}
}

The result, all the large triangles and circles are hidden inside .demo:

The colorful grid only has small and medium shapes visible.
Try a demo
Pro tip with compound selectors and nesting

The & symbol is your friend here as it shows explicitly how to adjoin nested selectors. Consider the following example:

.demo {
.lg {
.triange,
.circle
{
opacity: .25;
filter: blur(25px);
}
}
}

While a valid way to nest, the results won't match the elements you may expect. The reason is that without & to specify the desired outcome of .lg.triangle, .lg.circle compounded together, the actual result would be .lg .triangle, .lg .circle; descendant selectors.

Key Term

Nesting classes without & will always result in descendant selectors. Use the & symbol to change that result.

Selecting all the shapes except the pink ones

This task requires a negation functional pseudo class, where elements must not have the specified selector.

Without nesting, CSS today:

.demo :not(.pink) {
opacity: .25;
filter: blur(25px);
}

With nesting, here are two valid ways:

.demo {
:not(.pink) {
opacity: .25;
filter: blur(25px);
}
}

or

.demo {
& :not(.pink) {
opacity: .25;
filter: blur(25px);
}
}

The result, all the shapes that aren't pink are hidden inside .demo:

The colorful grid is now monochrome, only showing pink shapes.
Try a demo
Precision and flexibility with &

Say you wanted to target .demo with the :not() selector. & is required for that:

.demo {
&:not() {
...
}
}

This compounds .demo and :not() to .demo:not(), as opposed to the previous example which needed .demo :not(). This reminder is made very important when wanting to nest a :hover interaction.

.demo {
&:hover {
/* .demo:hover */
}

:hover {
/* .demo :hover */
}
}

More nesting examples

The CSS specification for nesting is packed with more examples. If you're looking to learn more about the syntax through examples, it covers a wide range of valid and invalid examples.

The next few examples will briefly introduce a CSS nesting feature, to help you understand the breadth of capabilities it introduces.

Nesting @media

It can be very distracting to move to a different area of the stylesheet to find media query conditions that modify a selector and its styles. That distraction is gone with the ability to nest the conditions right inside the context.

For syntax convenience, if the nested media query is only modifying the styles for the current selector context, then a minimal syntax can be used.

.card {
font-size: 1rem;

@media (width >= 1024px) {
font-size: 1.25rem;
}
}

Using & explicitly can also be used:

.card {
font-size: 1rem;

@media (width >= 1024px) {
&.large {
font-size: 1.25rem;
}
}
}

This example shows the expanded syntax with &, while also targeting .large cards to demonstrate additional nesting features continue working.

Learn more about nesting @rules.

Nesting anywhere

All examples up to this point have continued or appended to a previous context. You can completely change or rearrange the context if needed.

.card {
.featured & {
/* .featured .card */
}
}

The & symbol represents a reference to a selector object (not a string) and can be placed anywhere in a nested selector. It can even be placed multiple times:

.card {
.featured & & & {
/* .featured .card .card .card */
}
}

While this example is a bit useless looking, there are certainly scenarios where being able to repeat a selector context is handy.

Invalid nesting examples

There are a few nesting syntax scenarios that are invalid and may surprise you if you've been nesting in preprocessors. A cheat sheet for valid nesting syntax can be found in the understanding the nesting parser section of this article.

Nesting element tag names

HTML elements currently require the & symbol in front or being wrapped with :is().

.card {
h1 {
/* 🛑 h1 does not start with a symbol */
}
}

Fixed with syntax like this:

.card {
& h1 {
/* ✅ now h1 starts with a symbol */
}

/* or */

:is(h1) {
/* ✅ now h1 starts with a symbol */
}
}

Nesting and concatenation

Many CSS class naming conventions count on nesting being able to concatenate or append selectors as if they were strings. This does not work in CSS nesting as the selectors are not strings, they're object references.

.card {
&--header {
/* is not equal to ".card--header" */
}
}

A more in depth explanation can be found in the spec.

Mixing nesting and declarations

Consider the following nesting CSS block:

.card {
color: green;
& { color: blue; }
color: red;
}

The color of .card elements will be blue.

Any intermixed style declarations are hoisted to the top, as if they were authored before any nesting occurred. More details can be found in the spec.

Understanding the nesting parser

To have the most success with CSS nesting, authors can study the examples from the spec or they can learn how the CSS parser works with regards to nesting. With this knowledge, authors can confidently nest styles without constantly looking up rules.

The first and simplest way to think about the parser is to identify the symbols that signal to the parser that it's consuming nesting styles.

& @ : . > ~ + # [ *

Those symbols should look familiar. Some are combinators and some are for selectors. So at its most simplest, if the parser finds your nested selectors and it doesn't start with one of these symbols, it will fail and incorrectly consume your styles.

& @ : . > ~ + # [ *. Nested selector starts with one of these symbols?   If yes, it is valid. If not, it is invalid.

Feature detection

There are two great ways to feature detect CSS nesting: use nesting or use @supports to check for nesting selector parsing capability.

A screenshot of Bramus's Codepen demo, asking if your browser supports   CSS nesting. Under that question is a green box, signaling support.

Using nesting:

html {
.has-nesting {
display: block;
}

.no-nesting {
display: none;
}
}

Using @supports:

@supports (selector(&)) {
/* nesting parsing available */
}

My colleague Bramus has a great Codepen showing this strategy.

Debugging with Chrome DevTools

Current support in DevTools for nesting is minimal. Currently you will find styles are represented in the Styles pane as expected, but tracing the nesting and its full selector context is not yet supported. We have design and plans to make this transparent and clear.

A screenshot of Chrome DevTools nesting syntax.

Chrome 113 plans to have additional support for CSS nesting. Stay tuned.

The future

CSS Nesting is only at version 1. Version 2 will introduce more syntactic sugar and potentially fewer rules to memorize. There's a lot of demand for the parsing of nesting to not be limited, to not have a list of symbols that trigger the parser.

Nesting is a big enhancement to the CSS language. It has authoring implications to almost every architectural aspect of CSS. This big impact needs to be deeply explored and understood before version 2 can effectively be specified.

As a final thought, here's a demo that uses @scope, nesting, and @layer all together. It's all very exciting!

A light card on a gray background. The card has a title and text,   a few action buttons, and a cyber punk style image. ...



📌 Help pick a syntax for CSS nesting


📈 33.67 Punkte

📌 Help pick a syntax for CSS nesting survey results


📈 33.67 Punkte

📌 Nesting | The CSS Podcast


📈 33.67 Punkte

📌 CSS nesting is coming


📈 33.67 Punkte

📌 CSS Nesting


📈 33.67 Punkte

📌 New in Chrome 112: CSS nesting rules, no-op fetch handlers skipped, and more!


📈 33.67 Punkte

📌 Modern CSS for 2024: Nesting, Layers, and Container Queries


📈 33.67 Punkte

📌 Help choose the syntax for CSS Nesting


📈 33.67 Punkte

📌 Chrome 112 Released With WASM Garbage Collection Trial, CSS Nesting


📈 33.67 Punkte

📌 An Introduction to Native CSS Nesting


📈 33.67 Punkte

📌 CSS nesting relaxed syntax update


📈 33.67 Punkte

📌 CSS Grid: Moving From CSS Frameworks To CSS Grid (2018 and beyond)


📈 29.01 Punkte

📌 Stylify CSS: Automagic CSS bundles splitting into CSS layers in Astro.build


📈 29.01 Punkte

📌 Nesting Buildah Containers Using Podman


📈 24 Punkte

📌 Nesting Buildah Containers Using Podman


📈 24 Punkte

📌 Nesting window managers


📈 24 Punkte

📌 can somebody remove VIP in nesting function


📈 24 Punkte

📌 xHelper: The Russian Nesting Doll of Android Malware


📈 24 Punkte

📌 Writing Visual Studio Extensions with Mads - Nesting files in Solution Explorer


📈 24 Punkte

📌 Microsoft Internet Explorer 9 Object Nesting CountApes Pufferüberlauf


📈 24 Punkte

📌 Mysterious Silver Sparrow Malware Found Nesting on 30K Macs


📈 24 Punkte

📌 TanStack Router: Nesting & 404 pages


📈 24 Punkte

📌 Testing Tip: Reduce code complexity by reducing nesting


📈 24 Punkte

📌 Microsoft Internet Explorer 9 Object Nesting CountApes Pufferüberlauf


📈 24 Punkte

📌 CSS: How About Building A Search Engine With CSS?


📈 19.34 Punkte

📌 The Future of CSS: CSS Houdini


📈 19.34 Punkte

📌 New in Chrome 65: CSS Paint API, Server Timing API, and CSS display: contents


📈 19.34 Punkte

📌 MediaWiki up to 1.23.14/1.26.3/1.27.0 CSS User Subpage Preview common.css cross site scripting


📈 19.34 Punkte

📌 Schneider Electric U.motion Builder up to 1.3.3 css.inc.php css directory traversal


📈 19.34 Punkte

📌 mTheme-Unus Theme up to 2.2 on WordPress css/css.php files directory traversal


📈 19.34 Punkte

📌 MediaWiki bis 1.23.14/1.26.3/1.27.0 CSS User Subpage Preview common.css Cross Site Scripting


📈 19.34 Punkte

📌 Post-Modern CSS (In-Depth on CSS Grid, Flexbox and Other New Properties)


📈 19.34 Punkte

📌 Medium CVE-2021-33587: Css-what project Css-what


📈 19.34 Punkte

📌 State Of CSS Survey: Influence The Future Of CSS


📈 19.34 Punkte

📌 Do CSS framework users actually know CSS? We might have some data


📈 19.34 Punkte











matomo