Skip to content

Instantly share code, notes, and snippets.

@mcky
Created April 8, 2014 16:51
Show Gist options
  • Save mcky/10154992 to your computer and use it in GitHub Desktop.
Save mcky/10154992 to your computer and use it in GitHub Desktop.
Centering
body {
background: #900;
}
div {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
/*
This doesn't work
margin-left: -25%;
margin-top: -25%;
*/
width: 40%;
height: 50%;
padding: 20px;
background: red;
color: white;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment