- From: Robert Flack via GitHub <sysbot+gh@w3.org>
- Date: Wed, 19 Oct 2022 17:13:42 +0000
- To: public-css-archive@w3.org
Forgive me if I'm missing something, but doesn't option 4 disallow nesting within nesting? This seems like a valuable feature to lose support for.
E.g.
```css
.a {
.b {
.c {
}
}
}
```
If you were to try to write this with the postfix option 4, the rule for `.c` would be ambiguous as to whether it was nested within `.a` or `.b`, i.e.:
```css
.a {
} & .b {
} & .c {
/* What is this nested in? */
}
```
--
GitHub Notification of comment by flackr
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7834#issuecomment-1284330233 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 19 October 2022 17:13:44 UTC