diff --git a/index.bs b/index.bs
index d4516e0..381b3e4 100644
--- a/index.bs
+++ b/index.bs
@@ -77,6 +77,55 @@ The module in this new sidebar context will never need to reflow to the wider la
width
, calc
, min-width
and max-width
to affect binary changes to an elements width based on the width of its parent when compared to a static value, or 'breakpoint') can only deliver a small fraction of the functionality Container Queries are intended to offer.
+ These methods cannot employ the full capabilities of CSS on an element tree. For example, they cannot affect a child element's display
property in order to affect an new layout based on the width of a container.
+ iframe
s
+ iframe
s produces the closest effect to what Container Queries is intended to achieve, but their use has some significant drawbacks:
+
+ iframe
are stored in a separate HTML document rather than being part of the current document. This necessitates a new document composition paradigm that’s very different from the methods currently employed by developers.
+ iframe
to auto-size to fit its contents. A container that is the subject of a Container Query is still expected to be able to adapt to its contents in the opposite dimension of the query. For example, in the case of a Container Query that is based on a container's width, it is still expected that the container can adapt to the height of it's contents, subject to any overflow rules.
+ iframe
do not inherit any styles from their parent document, forcing the styles used by the 'module' to be redeclared.
+ iframe
s incur additional overhead by creating additional nested browsing contexts, which can degrade performance.
+