Day 71: the masonry keyword

The masonry keyword allows you to create masonry grid layouts.
If you want to create a masonry layout, all you have to do is turn one of the grid axes into a masonry axis using the masonry keyword.
<ol> <li> <a href=”/blog/2022/1…


This content originally appeared on Manuel Matuzović - Web development blog and was authored by Manuel Matuzović

The masonry keyword allows you to create masonry grid layouts.

If you want to create a masonry layout, all you have to do is turn one of the grid axes into a masonry axis using the masonry keyword.

<ol>
<li>
<a href="/blog/2022/100daysof-day70/">
Day 70: the defined pseudo-class
</a>
</li>
<li>
<a href="/blog/2022/100daysof-day69/">
Day 69: width in container queries
</a>
</li>
<li>
<a href="/blog/2022/100daysof-day68/">
Day 68: cascade layers and browser support
</a>
</li>

</ol>
ol {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
grid-template-rows: masonry;
}

This simple layout turns into…

A 7-column grid. All items in a row have the same height. They're as large as the largest item in the row.

…this “so much better” layout.

A 7-column grid. All items have a different height. They're only as large as they have to be.

You can also turn the other axis into the masonry axis.

ol {
display: grid;
gap: 1rem;
grid-template-columns: masonry;
grid-template-rows: repeat(auto-fill, 6rem);
}
A 4-rows grid. Each item in each row is as wide as its content.

Accessibility

By default, the packing algorithm puts items into the column with the most space. This may cause a disconnect between DOM and tabbing order, which can be an issue for keyboard and screen reader users. Test your masonry grids sufficiently.

Browser support

Why am I showing screenshots instead of rendering the result directly? Well, because Firefox is the only browser that supports the keyword at the moment and the feature is still behind a flag. You can enable it by visiting about:config and setting layout.css.grid-template-masonry-value.enabled to true.

Can you use it today? Yeah, why not?! Most users will still get a grid, it's just not a masonry layout.


This content originally appeared on Manuel Matuzović - Web development blog and was authored by Manuel Matuzović


Print Share Comment Cite Upload Translate Updates
APA

Manuel Matuzović | Sciencx (2023-01-02T09:38:54+00:00) Day 71: the masonry keyword. Retrieved from https://www.scien.cx/2023/01/02/day-71-the-masonry-keyword-2/

MLA
" » Day 71: the masonry keyword." Manuel Matuzović | Sciencx - Monday January 2, 2023, https://www.scien.cx/2023/01/02/day-71-the-masonry-keyword-2/
HARVARD
Manuel Matuzović | Sciencx Monday January 2, 2023 » Day 71: the masonry keyword., viewed ,<https://www.scien.cx/2023/01/02/day-71-the-masonry-keyword-2/>
VANCOUVER
Manuel Matuzović | Sciencx - » Day 71: the masonry keyword. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2023/01/02/day-71-the-masonry-keyword-2/
CHICAGO
" » Day 71: the masonry keyword." Manuel Matuzović | Sciencx - Accessed . https://www.scien.cx/2023/01/02/day-71-the-masonry-keyword-2/
IEEE
" » Day 71: the masonry keyword." Manuel Matuzović | Sciencx [Online]. Available: https://www.scien.cx/2023/01/02/day-71-the-masonry-keyword-2/. [Accessed: ]
rf:citation
» Day 71: the masonry keyword | Manuel Matuzović | Sciencx | https://www.scien.cx/2023/01/02/day-71-the-masonry-keyword-2/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.