Skip to content

Instantly share code, notes, and snippets.

@EdCharbeneau
Created June 17, 2019 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EdCharbeneau/4e4cc15c9eea022381fcb01c3d625e23 to your computer and use it in GitHub Desktop.
Save EdCharbeneau/4e4cc15c9eea022381fcb01c3d625e23 to your computer and use it in GitHub Desktop.
Simple Masonry CSS
.masonry {
display: flex;
flex-flow: column wrap;
max-height: 800px;
margin-left: -8px; /* Adjustment for the gutter */
width: 100%;
}
.masonry > div {
margin: 0 8px 8px 0; /* Some gutter */
}
@@media only screen and (min-width: 1024px) {
.masonry > div {
width: 33.33333%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment