Skip to content

Instantly share code, notes, and snippets.

@timskye
Created January 15, 2014 09:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save timskye/8433683 to your computer and use it in GitHub Desktop.
Save timskye/8433683 to your computer and use it in GitHub Desktop.
Vertical align an element using CSS
/** Vertical Align element **/
.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