Skip to content

Instantly share code, notes, and snippets.

@ryanburgess
Created December 9, 2013 19:35
Show Gist options
  • Select an option

  • Save ryanburgess/7879389 to your computer and use it in GitHub Desktop.

Select an option

Save ryanburgess/7879389 to your computer and use it in GitHub Desktop.
Set left and right margin to auto.
// -----------------------------------------
// Margin auto
// -------------------------------------------
// example: @include margin-auto();
@mixin margin-auto() {
margin-left:auto;
margin-right:auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment