LESS grid - iterating from 1% to 100% width
@iterations: 100; .grid-loop (@i) when (@i > 0) { .width-@{i} { width: ~"@{i}%"; } .grid-loop(@i - 1); } .grid-loop (@iterations);