Skip to content

Instantly share code, notes, and snippets.

@curiositry
Created December 14, 2013 02:42
Show Gist options
  • Save curiositry/7955082 to your computer and use it in GitHub Desktop.
Save curiositry/7955082 to your computer and use it in GitHub Desktop.
A Sass mixin I wrote to make CSS position declarations quicker to write.
@mixin pos($pos,$top,$right,$bottom,$left){
position: $pos;
@if $top {
top: $top;
} @if $right {
right: $right;
} @if $bottom {
bottom: $bottom;
} @if $left {
left: $left;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment