- From: Romain Menke via GitHub <sysbot+gh@w3.org>
- Date: Sat, 05 Nov 2022 18:39:04 +0000
- To: public-css-archive@w3.org
@argyleink These examples all follow the same basic pattern:
```
- style rule
- at-rule
- style rule
- declarations
```
```css
.foo {
@layer a-layer {
.bar {
color: red;
}
}
}
```
But can we also do this?
```
- style rule
- at-rule
- declarations
```
```css
.foo {
@layer a-layer {
color: red;
}
}
```
Also unclear if the wording from section 2.2 is still correct now that `@layer` and `@scope` are allowed. Should this be changed to be less specific than conditional rules. (afaik `@layer` isn't a conditional rule)
Or do need a new section for at-rules that aren't conditional rules?
--
GitHub Notification of comment by romainmenke
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7965#issuecomment-1304608409 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Saturday, 5 November 2022 18:39:13 UTC