Quick Stack in Webflow can behave unexpectedly on small screens due to fixed sizing, lack of wrapping, or parent container constraints. Here's how to diagnose and fix these responsiveness issues.
Select the Quick Stack element and check its display settings in the Style panel.
Ensure that Grid settings aren’t using fixed dimensions for columns (like 1fr 1fr
or auto
with no wrap allowance).
In most cases, text cutting is caused by:
Fixed column widths
Overflow settings
nowrap
text settings on child elements
Make sure child elements (e.g., text blocks) have:
Flexible width (auto
or %
)
White space set to normal
(not nowrap
)
Overflow set to visible or auto
Check parent containers for width restrictions or padding/margin causing inner content to shrink.
If the Quick Stack or any of its parents has:
A fixed width or max-width (like 320px
),
Grid constraints that don’t allow growth,
Or display set to inline or inline-block,
it can prevent expansion on mobile.
Webflow sometimes adds default padding/margin on containers; inspect this and reduce or remove it for mobile views.
Use Responsive Preview (click the device icons in the Webflow Designer) to debug how the layout adapts as screen size changes.
minmax(0, 1fr)
settings to allow the grid to adapt.min-content
, they won’t expand to accommodate text.Quick Stack issues on small devices usually stem from grid rigidity, fixed sizing, or overflow settings. Review the column behavior in mobile views, enable text wrapping, and allow auto-sizing within the cells. Switch to a responsive single-column layout on mobile landscapes if necessary.