Skip to content

Instantly share code, notes, and snippets.

@tomblanchard
Created August 10, 2013 00:24
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 tomblanchard/6198396 to your computer and use it in GitHub Desktop.
Save tomblanchard/6198396 to your computer and use it in GitHub Desktop.
Simple CSS grid sample. Credit: https://github.com/csswizardry/csswizardry-grids
.grid {
margin-left:-24px;
list-style:none;
margin-bottom:0;
}
.grid__item {
display:inline-block;
width:50%;
padding-left:24px;
margin-bottom:24px;
vertical-align:top;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment