Container queries will never be possible on the web. They would cause infinite layout loops. – Browsers, A Paraphrase (circa 2020)
Truly Two-Dimensional Layouts Combine Fluid & Fixed Stages of Squishiness Nested Contexts Expand & Contract Content Media Queries, As Needed
See the Pen 💥 Inline Containment Error, Auto-sized BFCs effected by floats by @miriamsuzanne on CodePen.
@container (min-width: 30em) { /* CQ support */ } @supports not (container: name) { /* no CQ support */ }
@container layout (min-width: 40em) { .conditional { /* … */ } } @container root (min-width: 40em) { .conditional { /* … */ } }
Finding Containers For each matched element… Find the nearest ancestor that has… Any required container name Any required container types
??? @container state(stuck) { … } @container state(snapped) { … } @container state(overflowing) { … }
Things Containers Know: Their Size (if contained) Custom Property Values Relative Values (like em) Maybe Some States?? (tbd)