Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created February 2, 2018 03:53
Show Gist options
  • Select an option

  • Save jbd91/050d97aaa5f06542c5535de2548cbbc9 to your computer and use it in GitHub Desktop.

Select an option

Save jbd91/050d97aaa5f06542c5535de2548cbbc9 to your computer and use it in GitHub Desktop.
Flex Box
.listing-items {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
.listing-item {
margin: 1rem;
width: calc(100% / 3 - 2rem);
@media screen and (max-width: 1024px) {
width: calc(100% / 2 - 2rem);
}
@media screen and (max-width: 639px) {
width: 100%;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment