Skip to content

Instantly share code, notes, and snippets.

@kisabelle
Created March 16, 2012 16:44
Show Gist options
  • Save kisabelle/2051033 to your computer and use it in GitHub Desktop.
Save kisabelle/2051033 to your computer and use it in GitHub Desktop.
CSS Grid Framework
.container{
display: block;
margin: 0 auto;
width: 974px;
}
.column{
float: left;
margin-right: 10px;
}
.half{
width: 487px;
}
.last{
margin-right: 0;
}
/* [ span-n = (72*n) + (10 * n-1) ] */
.span-1
{
width: 72px;
}
.span-3
{
width: 236px;
}
.span-4
{
width: 318px;
}
.span-6
{
width: 482px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment