- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Sun, 25 Feb 2024 00:26:54 +0000
- To: public-css-archive@w3.org
I see. But the problem is that it's inherently circular:
```html
<style>
#container { container-type: inline-size }
@container (width < min-width) {
#content { width: 0 }
}
@container (width >= min-width) {
#content { width: calc(100% + 100px) }
}
</style>
<div id="container">
<div id="content"></div>
</div>
```
--
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9978#issuecomment-1962768412 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Sunday, 25 February 2024 00:26:56 UTC