To make a Webflow grid fill the full height of the layout, simply setting the grid's height to 100% is not enough unless its parent elements also allow it. Here’s how to ensure the grid stretches to the full height of the viewport.
Select the parent element of your grid, all the way up to the Body.
For each relevant parent (e.g., Section
, Div Block
), go to the Style panel and set:
Height: 100%
Display: Block or Flex (Vertical), depending on layout needs
If using a Section
, consider switching it to a Div Block and explicitly set height to ensure control.
To make your Webflow grid fill the full height of the layout, set all parent elements up to the body with height: 100%, or directly set the grid’s height to 100vh for a simpler solution. Ensure no other styles are interfering like padding, margin, or fixed height constraints.