Created
October 9, 2017 15:30
-
-
Save nikolaswise/4652bcef4dd80813290769e00d055612 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ┌────────────┐ | |
// │ 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