Skip to content

Instantly share code, notes, and snippets.

@golman
Created July 7, 2013 14:18
Show Gist options
  • Save golman/5943615 to your computer and use it in GitHub Desktop.
Save golman/5943615 to your computer and use it in GitHub Desktop.
Centering Percentage Width/Height Elements
.center {
position: absolute;
left: 50%;
top: 50%;
/*
Nope =(
margin-left: -25%;
margin-top: -25%;
*/
/*
Yep!
*/
transform: translate(-50%, -50%);
/*
Not even necessary really.
e.g. Height could be left out!
*/
width: 40%;
height: 50%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment