grid-auto-flow: dense;
, grid-auto-rows: 10px;
, and grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
.grid-row-end: span X;
) to control their height.grid-template-columns
and grid-auto-rows
.A real masonry layout in Webflow using pure CSS (without CSS columns hacks) relies on CSS Grid with the grid-auto-flow: dense;
property. Here’s how to achieve it effectively:
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
grid-auto-rows: 10px;
grid-auto-flow: dense;
(ensures better filling of available gaps)Each item should occupy multiple grid rows based on its height.
Apply custom CSS to control row span dynamically:
In Webflow, add a custom class to your grid items (e.g., masonry-item
).
Inside Webflow’s Custom Code (Before
), add:
```css
.masonry-item {
grid-column: span 1;
grid-row-end: span auto;
}
/_ Example for taller items _/
.masonry-item.tall {
grid-row-end: span 4;
}
.masonry-item.short {
grid-row-end: span 2;
}
```
Webflow does not handle grid-row-end: span auto;
dynamically.
If your items have unknown heights, use JavaScript to calculate and apply spans dynamically:
```html
```
minmax(250px, 1fr)
in grid-template-columns.grid-auto-rows:
to match your content spacing.To create a true masonry layout in Webflow without the column hack:
grid-auto-flow: dense;
.grid-row-end: span X;
).This method avoids the CSS columns hack and ensures a proper masonry effect, like Pinterest. 🚀