Skip to content

Instantly share code, notes, and snippets.

@stephenhowells
Created September 27, 2012 21:22
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 stephenhowells/3796548 to your computer and use it in GitHub Desktop.
Save stephenhowells/3796548 to your computer and use it in GitHub Desktop.
nifty grid work in sass
/*style several classes by prefix*/
[class*='col-'] {
float: left;
padding-right: $pad;
.grid &:last-of-type {
padding-right: 0;
}
}
.col-2-3 {
width: 66.66%;
}
.col-1-3 {
width: 33.33%;
}
.col-1-2 {
width: 50%;
}
.col-1-4 {
width: 25%;
}
.col-1-8 {
width: 12.5%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment