- From: Ian Kilpatrick via GitHub <sysbot+gh@w3.org>
- Date: Thu, 25 Mar 2021 00:39:34 +0000
- To: public-css-archive@w3.org
What happens with grid minimum sizes here? E.g: ```html <!DOCTYPE html> <div style="display: grid; width: 0; height: 0; position: relative;"> <div style="overflow: hidden; min-width: 100px; min-height: 50px; aspect-ratio: 1/1; background: red;"> </div> <div style="position: absolute; width: 100%; height: 100%; background: green; grid-area: 1/1/1/1;"></div> </div> ``` ```html <!DOCTYPE html> <div style="display: grid; width: 0; height: 0; position: relative;"> <div style="overflow: hidden; min-width: 50px; min-height: 100px; aspect-ratio: 1/1; background: red;"> </div> <div style="position: absolute; width: 100%; height: 100%; background: green; grid-area: 1/1/1/1;"></div> </div> ``` -- GitHub Notification of comment by bfgeek Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6071#issuecomment-806274309 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 25 March 2021 00:42:37 UTC