Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created February 3, 2014 08:55
Show Gist options
  • Save robertmagnusson/8780718 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8780718 to your computer and use it in GitHub Desktop.
Mixin center.
@mixin center() {
display: block;
margin-left: auto;
margin-right: auto;
}
.container {
@include center();
/* Other styles here... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment