Created
July 4, 2014 16:53
-
-
Save P233/47ef0a768698e0ba1e70 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// Sass (v3.3.9) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$var: null; | |
@for $i from 1 through 5 { | |
$var: $var, $i $i; | |
} | |
body { | |
list: $var; | |
@each $item in $var { | |
item: $item; | |
} | |
} | |
// Expecting to output: | |
// body { | |
// list: 1 1, 2 2, 3 3, 4 4, 5 5; | |
// item: 1 1; | |
// item: 2 2; | |
// item: 3 3; | |
// item: 4 4; | |
// item: 5 5; | |
// } |
This file contains 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
body { | |
list: 1 1, 2 2, 3 3, 4 4, 5 5; | |
item: 1 1, 2 2, 3 3, 4 4; | |
item: 5 5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment