Skip to content

Instantly share code, notes, and snippets.

@yungookim
Created January 15, 2014 06:30
Show Gist options
  • Save yungookim/8431759 to your computer and use it in GitHub Desktop.
Save yungookim/8431759 to your computer and use it in GitHub Desktop.
Vertical align anything with just 3 lines of CSS http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/
.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