Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created December 10, 2013 18:29
Show Gist options
  • Save jbutko/7895535 to your computer and use it in GitHub Desktop.
Save jbutko/7895535 to your computer and use it in GitHub Desktop.
CSS, SASS, SCSS: Center-align a block level element
@mixin center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
// http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment