Skip to content

Instantly share code, notes, and snippets.

@nikolaswise
Created October 9, 2017 15:30
Show Gist options
  • Save nikolaswise/4652bcef4dd80813290769e00d055612 to your computer and use it in GitHub Desktop.
Save nikolaswise/4652bcef4dd80813290769e00d055612 to your computer and use it in GitHub Desktop.
// ┌────────────┐
// │ CSS Grid: │
// │ Good for │
// │ spanning │
// │ horizontal │
// └────────────┘
.masonry {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: $gutter;
grid-auto-rows: minmax($baseline, auto);
grid-auto-flow: dense;
}
.masonry-item:nth-child(3) {
grid-column: 3 / 5;
}
.masonry-item:nth-child(10) {
grid-column: 1 / 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment