Re: [csswg-drafts] [css-syntax][css-nesting] Design of `@nest` rule (#10234)

So authors could (but likely won't) write :

```css
:root {
  @group {
    --color-a: pink;

    @media screen { --color-a: red; }

    --color-b: lime;
  }
}
```

Which would be equivalent to :

```css
:root {
  @group {
    --color-a: pink;

    @media screen { --color-a: red; }

    @group { --color-b: lime; }
  }
}
```

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


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

Received on Thursday, 25 April 2024 10:35:25 UTC