Skip to content

Instantly share code, notes, and snippets.

@nikoloza
Last active February 4, 2016 15:10
Show Gist options
  • Save nikoloza/d0302a8043f991726d01 to your computer and use it in GitHub Desktop.
Save nikoloza/d0302a8043f991726d01 to your computer and use it in GitHub Desktop.
Generate simple Grid System using Less
.columns(@property: 1) {
& > .cell {
width: 100% / @property;
}
}
.generate-row(@n, @i: 1) when (@i =< @n) {
&.row@{i} {
.columns(@i);
}
.generate-row(@n, (@i + 1));
}
.generate-row(12);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment