Skip to content

Instantly share code, notes, and snippets.

@markgajdosik
Created July 7, 2014 11:06
Show Gist options
  • Save markgajdosik/79db15cb98a9bce3ae3b to your computer and use it in GitHub Desktop.
Save markgajdosik/79db15cb98a9bce3ae3b to your computer and use it in GitHub Desktop.
<body>
<div id="container">
<div id="content">
<h1>Centered div</h1>
</div>
</div>
</body>
#container{
position: absolute;
top: 50%;
margin-top: -200px;/* half of #content height*/
left: 0;
width: 100%;
}
#content {
width: 624px;
margin-left: auto;
margin-right: auto;
height: 395px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment