Webflow does not have a direct "auto-fill" setting in its UI for CSS Grid. However, you can achieve similar behavior by using the Manual (Advanced) Grid settings.
1. Use Minmax and Auto Columns
- Select your Grid container.
- In the Grid layout section, locate the Column settings.
- Set the column value to Minmax( ) using the Manual setting:
- Example: minmax(200px, 1fr) ensures that columns automatically adjust to fit the available space.
2. Adjust Implicit Rows and Columns
- Under "Advanced Grid Settings", ensure that Auto is enabled for row and column creation.
- This allows content to fill the next available slot when additional items are added.
3. Use Flexbox Inside Grid Items (Optional)
- If needed, set child elements to flexbox inside the grid to improve layout behavior when items reflow.
Summary
Webflow does not provide a direct "auto-fill" option, but you can achieve a similar effect by using Minmax() for columns and enabling Auto rows/columns in the Manual Grid settings.