Re: [csswg-drafts] [css-contain] [css-sizing] [sizing-values] Allow sizing values like @container burgermenu (width < min-width) (#9978)

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