Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save achudars/5488041 to your computer and use it in GitHub Desktop.
Save achudars/5488041 to your computer and use it in GitHub Desktop.
Perfectly centered DIV using CSS. Perfectly centred DIV using CSS.
div {
position: absolute;
left: 50%;
top: 50%;
width: 400px;
height: 400px;
margin-left: -200px;
margin-top: -200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment