Re: [csswg-drafts] [css-nesting-1] Can we relax the syntax further? (#7961)

Even with lookahead, this is still ambiguous per core syntax since blocks are valid component values in a declaration:

```css
div:hover span {}
```

For instance inside a style rule, does the semi-colon make a difference between:

```css
span {
  div:hover span {}
  color: blue;
}
```

and:

```css
span {
  div:hover span {};
  color: blue;
}
```

?


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


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

Received on Thursday, 27 October 2022 08:55:29 UTC