Skip to content

Instantly share code, notes, and snippets.

@MartinMekhaiel
Created June 23, 2014 20:00
Show Gist options
  • Select an option

  • Save MartinMekhaiel/76edf3ce001d9c7a201c to your computer and use it in GitHub Desktop.

Select an option

Save MartinMekhaiel/76edf3ce001d9c7a201c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="class">123</div>
// ----
// 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;}
Invalid CSS after "...$width in $px {": expected "}", was "{width: $width;}"
<div class="class">123</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment