Created
September 16, 2014 22:03
-
-
Save MichaelArestad/1bf108470ab8bdba2cb6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@for $i from 1 through 3 { | |
.item-#{$i} { | |
margin-left: 10px * $i; | |
} | |
} |
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
.item-1 { | |
margin-left: 10px; | |
} | |
.item-2 { | |
margin-left: 20px; | |
} | |
.item-3 { | |
margin-left: 30px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment