Skip to content

Instantly share code, notes, and snippets.

@skhilko
Created August 28, 2013 05:52
Show Gist options
  • Save skhilko/6362531 to your computer and use it in GitHub Desktop.
Save skhilko/6362531 to your computer and use it in GitHub Desktop.
A simple yet powerful absolute centering technique from http://codepen.io/shshaw/full/gEiDt
.center-container {
position: relative;
}
.absolute-center {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment