Created
July 13, 2017 12:26
-
-
Save Farmatique/356c9b6c5e2495d33fc26e5ca156102e to your computer and use it in GitHub Desktop.
less iterator loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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