Created
June 23, 2014 20:00
-
-
Save MartinMekhaiel/76edf3ce001d9c7a201c 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="class">123</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
| // ---- | |
| // Sass (v3.3.8) | |
| // Compass (v1.0.0.alpha.19) | |
| // ---- | |
| $px: 33px, 40px, 50px; | |
| @mixin Sizes{ | |
| @each $width in $px { | |
| {width: $width;} | |
| } | |
| } | |
| .class { | |
| @include Sizes; | |
| border:1px solid black;} | |
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
| Invalid CSS after "...$width in $px {": expected "}", was "{width: $width;}" |
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="class">123</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment