Created
September 4, 2015 20:48
-
-
Save terrymun/75770dbe813cecfb8dc3 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
<div class="m45">m45: 90px tall</div> | |
<div class="m50">m50: 100px tall</div> | |
<div class="m55">m55: 110px tall</div> |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@for $i from 1 through 10 { | |
.m#{$i*5} { | |
height: $i*10px; | |
} | |
} |
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
.m5 { | |
height: 10px; | |
} | |
.m10 { | |
height: 20px; | |
} | |
.m15 { | |
height: 30px; | |
} | |
.m20 { | |
height: 40px; | |
} | |
.m25 { | |
height: 50px; | |
} | |
.m30 { | |
height: 60px; | |
} | |
.m35 { | |
height: 70px; | |
} | |
.m40 { | |
height: 80px; | |
} | |
.m45 { | |
height: 90px; | |
} | |
.m50 { | |
height: 100px; | |
} |
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
<div class="m45">m45: 90px tall</div> | |
<div class="m50">m50: 100px tall</div> | |
<div class="m55">m55: 110px tall</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment