Skip to content

Instantly share code, notes, and snippets.

@ViktorAndonov
Created September 17, 2015 15:57
Show Gist options
  • Save ViktorAndonov/8b64b12daff281315b5b to your computer and use it in GitHub Desktop.
Save ViktorAndonov/8b64b12daff281315b5b to your computer and use it in GitHub Desktop.
Vertical align anything with CSS3
.element {
position: relative;
top: 50%;
transform: translateY(-50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment