Step 1: Set up your structure
Your layout should follow this structure:
A section frame (the parent)
Inside it, a frame named
cards— containing 3 card componentsAll frames use Auto Layout
Set
Height = Hugfor both the section frame and thecardsframe
→ So the height adjusts when content reflows on narrower screens
Step 2: Initial layout settings
On the cards frame:
Layout: Horizontal Auto Layout
Width = FillHeight = HugSet spacing between items to
32px
Each card frame:
Width = FillHeight = Fixed (e.g. 448px)Content inside the card should also use
Fill,
→ except for fixed-size elements like icons or buttons
Step 3: Enable wrapping and responsive behavior
Select the
cardsframeIn the Auto Layout settings, turn ON:
Wrap
→ This allows cards to break to a new rowSelect all three cards
Open the Advanced section in the Layout menu
Set:
Min width =
280px(Optional) Max width =
420px
Result
As screen width shrinks, cards will break into fewer columns
Once a card reaches
280px, it wraps to the next lineSince cards are set to
Fill, they’ll expand — but no wider thanMax widthThis creates a smooth responsive layout that stays visually consistent
