- From: Jonathan Neal via GitHub <sysbot+gh@w3.org>
- Date: Thu, 17 Jun 2021 20:23:33 +0000
- To: public-css-archive@w3.org
jonathantneal has just submitted a new pull request for https://github.com/w3c/csswg-drafts:
== [css-nesting-1] fix nesting example ==
[css-nesting-1] fix the nesting example
This changes adds a missing nesting selector (`&`) to an example in the CSS Nesting specification.
The current example, without a nesting selector:
```css
article {
color: blue;
:where(&) { color: red; }
}
```
The fixed example, with a nesting selector:
```css
article {
color: blue;
&:where(&) { color: red; }
}
```
See https://github.com/w3c/csswg-drafts/pull/6394
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 17 June 2021 20:24:40 UTC