Skip to content

Instantly share code, notes, and snippets.

@cbourdage
Created May 12, 2014 15:13
Show Gist options
  • Select an option

  • Save cbourdage/a0baf40a266f9fa0ed8a to your computer and use it in GitHub Desktop.

Select an option

Save cbourdage/a0baf40a266f9fa0ed8a to your computer and use it in GitHub Desktop.
// Counter attempt 1 - via recursion
.loop(@total, @cols @i: 1) when (@i =< (@total * @cols)) {
.item-@{i} {
margin-left: 0;
}
.loop(@total, @cols, (@i + 5)); // next iteration
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment