mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
16 lines
248 B
SCSS
16 lines
248 B
SCSS
.masonry-grid {
|
|
column-count: 3;
|
|
column-gap: 1rem;
|
|
|
|
/* Misc */
|
|
width: 100%;
|
|
}
|
|
|
|
.masonry-grid__item {
|
|
/* Prevent a column from breaking into multiple columns */
|
|
break-inside: avoid;
|
|
|
|
/* Misc */
|
|
margin-bottom: 1rem;
|
|
}
|