Created
September 30, 2014 20:02
-
-
Save UltCombo/2b512afa5536b1d7e018 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.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$helpers-name: ( | |
fll: ( | |
float: left | |
), | |
flr: ( | |
float: right | |
) | |
); | |
@each $name, $ruleset in $helpers-name{ | |
.h-#{$name} { | |
@each $prop, $value in $ruleset { | |
#{$prop}: $value; | |
} | |
} | |
} | |
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
.h-fll { | |
float: left; | |
} | |
.h-flr { | |
float: right; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment