Re: [csswg-drafts] [css-cascade] What is the appropriate syntax for appending to nested layers? (#5791)

Worth noting that this syntax can also be used inside a (currently comma-separated) list of layers. To show a few of those options:

```css
@layer framework.default, framework.theme;
@layer framework default, framework theme;
@layer framework / default, framework / theme;
```

Or in the block syntax:

```css
@layer framework.theme {
 blockquote { color: rebeccapurple; }
}

@layer framework theme {
 blockquote { color: rebeccapurple; }
}

@layer framework / theme {
 blockquote { color: rebeccapurple; }
}
```

I think the space works well in both cases, and adding punctuation feels unnecessary.

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


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

Received on Wednesday, 27 January 2021 16:51:40 UTC