Skip to content

Instantly share code, notes, and snippets.

@ideefixe
Created January 28, 2013 20:59
Show Gist options
  • Save ideefixe/4658942 to your computer and use it in GitHub Desktop.
Save ideefixe/4658942 to your computer and use it in GitHub Desktop.
Center Div Vertically and Horizontally
.center {
width: 300px;
height: 300px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -150px;
margin-top: -150px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment