Skip to content

Instantly share code, notes, and snippets.

@beovulf
Created February 3, 2016 09:16
Show Gist options
  • Save beovulf/1f2612c01531121972ff to your computer and use it in GitHub Desktop.
Save beovulf/1f2612c01531121972ff to your computer and use it in GitHub Desktop.
Absolute centering
.absolute-center {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment