Re: [csswg-drafts] [css-nesting-1] Nesting with `@scope` and `:scope`/`&` (#8019)

```css
/* 1.a */
:scope {
  @scope (.foo) {
    color: pink;
  }
}
```

is this equivalent to :

1. `:scope` is `:root`
2. "resolve" nesting

```css
/* 1.a */
@scope (.foo) {
  :root {
    color: pink;
  }
}
```

or equivalent to :

is this equivalent to :

1. "resolve" nesting
2. `:scope` is `:scope`

```css
/* 1.a */
@scope (.foo) {
  :scope {
    color: pink;
  }
}
```

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


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

Received on Friday, 4 November 2022 18:33:30 UTC