- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Tue, 17 Jan 2023 15:20:45 +0000
- To: public-css-archive@w3.org
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