Re-exports§
pub use flow::BoxTree;
Modules§
- cell 🔒
- Layout construction code that is shared between modern layout modes (Flexbox and CSS Grid)
- flexbox 🔒
- Flow layout, also known as block-and-inline layout.
- lists 🔒
- Utilities for querying the layout, as needed by layout.
- quotes 🔒
- replaced 🔒
- sizing 🔒
- HTML Tables (╯°□°)╯︵ ┻━┻
- taffy 🔒
Structs§
- Represents the set of constraints that we use when computing the min-content and max-content inline sizes of an element.
- A variant of
ContainingBlock
that allows an indefinite inline size. Useful for code that is shared for both layout (where we know the inline size of the containing block) and intrinsic sizing (where we don’t know it). - Data that is propagated from ancestors to descendants during
crate::flow::BoxTree
construction. This allows data to flow in the reverse direction of the typical layout propoagation, but only duringBoxTree
construction.