Skip to content

Instantly share code, notes, and snippets.

@pavelbinar
Forked from tomraithel/gist:3852171
Last active August 29, 2015 14:25
Show Gist options
  • Save pavelbinar/01521316c4f528eac2b0 to your computer and use it in GitHub Desktop.
Save pavelbinar/01521316c4f528eac2b0 to your computer and use it in GitHub Desktop.
SASS: mixin for absolute center position
@mixin center($width, $height) {
position: absolute;
left: 50%;
top: 50%;
height: $height;
width: $width;
margin-left: - $width / 2;
margin-top: - $height / 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment