Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Farmatique/356c9b6c5e2495d33fc26e5ca156102e to your computer and use it in GitHub Desktop.
Save Farmatique/356c9b6c5e2495d33fc26e5ca156102e to your computer and use it in GitHub Desktop.
less iterator loop
<ul>
<li class="item-1"></li>
<li class="item-2"></li>
<li class="item-3"></li>
<li class="item-4"></li>
<li class="item-5"></li>
</ul>
li{
background-color: red;
width: 10%;
}
@loopLength: 5;
.mixin-width (@i) when (@i > 0){
li:nth-child(@{i}){
width: @i+0%;
}
.mixin-width(@i - 1);
}
.mixin-width(@loopLength);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment