Skip to content

Instantly share code, notes, and snippets.

@skplunkerin
Last active June 20, 2016 15:52
Show Gist options
  • Save skplunkerin/eed8ef919142ee522e7d to your computer and use it in GitHub Desktop.
Save skplunkerin/eed8ef919142ee522e7d to your computer and use it in GitHub Desktop.
css center
/* http://www.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/ */
.Absolute-Center {
height: 500px;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
@skplunkerin
Copy link
Author

check link, you need to make sure a height is specified

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment