Skip to content

Instantly share code, notes, and snippets.

@pedrogimenez
Created May 20, 2013 11:27
Show Gist options
  • Save pedrogimenez/5611715 to your computer and use it in GitHub Desktop.
Save pedrogimenez/5611715 to your computer and use it in GitHub Desktop.
Vertical and horizontal centering an element with unknown size
.centered {
background-color: red;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment