Skip to content

Instantly share code, notes, and snippets.

@Integralist
Created September 13, 2011 08:56
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Integralist/1213445 to your computer and use it in GitHub Desktop.
Save Integralist/1213445 to your computer and use it in GitHub Desktop.
Better CSS Grid System
/*
* Algorithm taken from:
* http://csswizardry.com/2011/08/building-better-grid-systems/
*/
.row {
width: (number of columns * width of one column) + (number of columns * width of one gutter) px;
margin-left: -width of one gutter px;
overflow: hidden;
clear: both;
}
.grid {
float: left;
margin-left: width of one gutter px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment