Created
September 3, 2019 22:59
-
-
Save younes-dro/fe6c4dde5fdfce7c25178b3448a95d26 to your computer and use it in GitHub Desktop.
combine @extend and a loop for with Sass
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
%white-div{ | |
color:#fff; | |
} | |
@for $j from 1 to 6{ | |
div-#{$j}{ | |
@extend %white-div; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment