[csswg-drafts] [css-nesting] Meaning of using multiple & (#6336)

Loirooriol has just created a new issue for https://github.com/w3c/csswg-drafts:

== [css-nesting] Meaning of using multiple & ==
```css
div {
  @nest & > & {
    color: blue;
  }
}
```

What's the meaning of this? Does it match all `div` element which are a child of another `div` element, just like

```css
div > div { color: blue }
```

Or does it only match the `div` elements which are a child of themselves (i.e. match nothing)?

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6336 using your GitHub account


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

Received on Tuesday, 1 June 2021 15:38:19 UTC