auto-fill
or auto-fit
for CSS Grid, so use Flexbox with wrap or adjust grid columns per breakpoint for responsiveness.auto-fill
/auto-fit
functionality, embed custom CSS targeting a grid container via the Page Settings or a Custom Code block.Webflow’s visual CSS Grid controls do not directly support the auto-fill
or auto-fit
keyword settings found in raw CSS, but there are alternative workflows to achieve similar layout behavior within Webflow.
auto-fill
or auto-fit
options in the UI.auto-fill
and auto-fit
are dynamic CSS features for responsive layouts.auto-fill
/ auto-fit
grid-template-columns: repeat(auto-fill, minmax(...));
, embed custom CSS via:Example inline reference (not displayed in code block for compliance):grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
Webflow does not support auto-fill
or auto-fit
for CSS Grid in its visual UI. To implement those behaviors, use custom code or try Flexbox with wrap as a workaround in the designer.