Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VasylKyryliuk/56cc175127534552cd844174b97fea3d to your computer and use it in GitHub Desktop.
Save VasylKyryliuk/56cc175127534552cd844174b97fea3d to your computer and use it in GitHub Desktop.
Grid css
<ol class="posts_list">
<li class="post_holder"></li>
</ol>
.posts_list {
margin-top: 0;
margin-bottom: 20px;
list-style: none;
-webkit-column-count: 4;
-moz-column-count: 4;
column-count: 4;
-webkit-column-gap: 0;
-moz-column-gap: 0;
column-gap: 0;
padding-left: 20px;
}
.post_holder {
padding-top: 0;
list-style: none;
margin-top: 0;
width: 91%;
background: none;
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
padding: 0 0px 25px;
margin-bottom: 0!important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment