Re: [csswg-drafts] [css-sizing-4] min/max size transfers across aspect-ratio (#6071)

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