Skip to content

Instantly share code, notes, and snippets.

@piouPiouM
Created September 16, 2015 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piouPiouM/f48738905b1633d1e7a9 to your computer and use it in GitHub Desktop.
Save piouPiouM/f48738905b1633d1e7a9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
/* Solution 1 */
$_selectors: '';
@for $i from 1 through 12 {
$_selectors: '#{$_selectors}.truc_#{$i}';
}
#{simple-selectors($_selectors)} {
property: value;
}
/* Solution 2 */
%truc {
property: value;
}
@for $i from 1 through 12 {
.truc_#{$i} {
@extend %truc;
}
}
/* Solution 1 */
.truc_1, .truc_2, .truc_3, .truc_4, .truc_5, .truc_6, .truc_7, .truc_8, .truc_9, .truc_10, .truc_11, .truc_12 {
property: value;
}
/* Solution 2 */
.truc_1, .truc_2, .truc_3, .truc_4, .truc_5, .truc_6, .truc_7, .truc_8, .truc_9, .truc_10, .truc_11, .truc_12 {
property: value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment