Skip to content

Instantly share code, notes, and snippets.

@younes-dro
Created September 3, 2019 22:59
Show Gist options
  • Save younes-dro/fe6c4dde5fdfce7c25178b3448a95d26 to your computer and use it in GitHub Desktop.
Save younes-dro/fe6c4dde5fdfce7c25178b3448a95d26 to your computer and use it in GitHub Desktop.
combine @extend and a loop for with Sass
%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