Skip to content

Instantly share code, notes, and snippets.

@enmanuel97
Created December 13, 2020 23:40
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 enmanuel97/366a8e0463a064a042e0e95b926785eb to your computer and use it in GitHub Desktop.
Save enmanuel97/366a8e0463a064a042e0e95b926785eb to your computer and use it in GitHub Desktop.
//parent selector
#container {
@media (max-width: 779px) and (min-width: 0px) {
column-count: 2;
}
@media (max-width: 1039px) and (min-width: 780px) {
column-count: 3;
}
@media (max-width: 1299px) and (min-width: 1040px) {
column-count: 4;
}
@media (min-width: 1300px) {
column-count: 5;
}
column-gap: 0px;
}
//This is not mandatory but maybe could be necessary
children-selector {
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment