- From: Oriol Brufau via GitHub <noreply@w3.org>
- Date: Fri, 03 Oct 2025 23:21:46 +0000
- To: public-css-archive@w3.org
I think you just want this:
```css
.last_cell_content {
height: 0;
min-height: 100%;
}
```
First, `height: 0` makes it contribute 0 to the row. And once we know the size of the row (from the other items), `min-height: 100%` stretches to that amount. `min-height: stretch` would be better but not widely supported yet.
--
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/12901#issuecomment-3367521234 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 3 October 2025 23:21:47 UTC