- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Thu, 17 Oct 2024 20:30:52 +0000
- To: public-css-archive@w3.org
It's worth noting that there is a difference among major browsers:
- Gecko treats an indefinite `min-height: stretch` as the initial `auto`
- Blink and WebKit treat it as `0px`
```html
<!DOCTYPE html>
<div style="display: flex; flex-direction: column; border: solid cyan; min-height: 100px; width: 200px;">
<div style="min-height: -moz-available; min-height: -webkit-fill-available; min-height: stretch;
flex-basis: 0; border: solid">lorem ipsum</div>
</div>
```
| Gecko | Blink, WebKit |
| - | - |
|  |  |
Interestingly, they all treat `min-height: 0%` as `0px`.
--
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11006#issuecomment-2420496206 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 17 October 2024 20:30:53 UTC