Skip to content

Instantly share code, notes, and snippets.

@cgkio
Created September 18, 2013 16:32
Show Gist options
  • Select an option

  • Save cgkio/6611785 to your computer and use it in GitHub Desktop.

Select an option

Save cgkio/6611785 to your computer and use it in GitHub Desktop.
Absolute Centering (CSS)
.Absolute-Center {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
/*
ADVANTAGE: Cross-browser (including IE8-10)
CAVEAT: Height must be declared
source: http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment