Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created February 11, 2014 15:32
Show Gist options
  • Save robertmagnusson/8937133 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8937133 to your computer and use it in GitHub Desktop.
Position absolute mixin
@mixin abs-pos ($top: auto, $right: auto, $bottom: auto, $left: auto) {
top: $top;
right: $right;
bottom: $bottom;
left: $left;
position: absolute;
}
.abs {
@include abs-pos(10px, 10px, 5px, 15px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment