Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created December 10, 2015 16:16
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 taniarascia/fc350d16ed0bdc16b614 to your computer and use it in GitHub Desktop.
Save taniarascia/fc350d16ed0bdc16b614 to your computer and use it in GitHub Desktop.
Repeating Grid
.grid {
list-style: none;
padding: 0;
margin: 0;
&:after {
display: table;
content: '';
clear: both;
}
}
.grid li {
display: inline-block;
margin: .5% .25%;
float: left;
}
.grid.columns-4 li {
width: 24%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment