Re: [csswg-drafts] [css-nesting-2] Syntax to customize how a nest-containing selector is resolved? (#6330)

This is ingenious! So, according to the spec the example above desugars as:
```css
.container .widget { color: blue; }
.container.selected .widget { color: red; }
```

Whereas in preprocessors it would currently desugar as:
```css
.container .widget { color: blue; }
.container.selected .container .widget { color: red; }
```

If I’m not mistaken this issue becomes obsolete as a result?

-- 
GitHub Notification of comment by flachware
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6330#issuecomment-1439004460 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 21 February 2023 19:45:30 UTC