The spine
Vertical is flow. Inside is free.
An earlier version was a flat artboard of absolutely positioned children, and it had a real hole: absolute geometry does not reflow. Adding content meant hand-moving everything below it, and there was no unit of the page big enough to reorder, reuse, or hand to somebody else.
Sections split the problem in two. Sections stack in order and each owns a height, so inserting one pushes everything below it down for free. Within a section, children are placed to the pixel — which is what a design tool is actually for.
- Reorder, rename, lock, hide and duplicate operate on a section.
- A container resolving to flex or grid lays out its own children instead.
- Sections clip, so an overflow reads as a layout problem rather than a canvas fault.