Re: [csswg-drafts] [css-display-4] Add new inner display type 'stacked' (#8321)

Yeah I guess you can use

```css
.stacked { display: grid }
.stacked > * { grid-area: 1 / 1 / 2 / 2 }
```
but this misses pseudo-elements and children of `display: contents`. But rather than adding a new display type, maybe this functionality could be backed into `grid-auto-flow`? Then it would just be

```css
.stacked { display: grid; grid-auto-flow: 1 / 1 / 2 / 2 }
```

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


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

Received on Tuesday, 17 January 2023 15:20:48 UTC