Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created December 4, 2013 21:33
Show Gist options
  • Save jlittlejohn/7795999 to your computer and use it in GitHub Desktop.
Save jlittlejohn/7795999 to your computer and use it in GitHub Desktop.
SCSS: Vertically/Horizontally Align Container
.center-container {
position: relative;
}
.absolute-center {
width: 50%;
height: 50%;
overflow: auto;
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