- From: Ian Kilpatrick via GitHub <sysbot+gh@w3.org>
- Date: Wed, 02 Feb 2022 03:52:53 +0000
- To: public-css-archive@w3.org
@dholbert - That example is using the `min-width: auto` to size up to 100px, its not strictly that "min-content" is 100px in this case. E.g. ``` <div style="aspect-ratio: 1/2; height: 100px; width: min-content; min-width: 0; background: blue; border: 5px solid orange"> <div style="width: 100px;"></div> </div> ``` In the above case all browsers agree that its 50px. Here min-content is 50px, but with `min-width: auto`, we apply a minimum of the *intrinsic min-size* of `100px`. -- GitHub Notification of comment by bfgeek Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6794#issuecomment-1027549718 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 2 February 2022 03:52:55 UTC