mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
19 lines
339 B
SCSS
19 lines
339 B
SCSS
.masonry-grid {
|
|
/* It is split into 3 columns */
|
|
column-count: 3;
|
|
|
|
/* The space between columns */
|
|
column-gap: 1rem;
|
|
|
|
/* Demo */
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.masonry-grid__item {
|
|
/* Prevent a column from breaking into multiple columns */
|
|
break-inside: avoid;
|
|
|
|
/* Misc */
|
|
margin-bottom: 1rem;
|
|
} |