Created
April 28, 2013 20:29
-
-
Save lunelson/5478299 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
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
=position($type, $params...) | |
position: #{$type} | |
@each $param in $params | |
#{nth($param,1)}: #{nth($param,2)} | |
.test | |
+position(absolute, bottom 0px, top 0px) | |
.test2 | |
+position(relative, right 3px) |
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
.test { | |
position: absolute; | |
bottom: 0px; | |
top: 0px; | |
} | |
.test2 { | |
position: relative; | |
right: 3px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment