Re: [csswg-drafts] [css-nesting] selecting grandparent selector with @nest (#6977)

```css
@custom-selector :--granny .a 
--granny {
  & .b {
    @nest --granny:not(.c) & {}
  }
}
```

Is this intended to become :

```css
--granny:not(.c) :is(--granny .b) {}
```

or :

```css
--granny:not(.c) .b {}
```

--------

_I do like the idea of using `@custom-selector` as a way to store a resolved `&` from nesting._

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


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

Received on Tuesday, 13 September 2022 06:11:40 UTC