Skip to content

Instantly share code, notes, and snippets.

@ericjgruber
Created June 10, 2015 16:15
Show Gist options
  • Save ericjgruber/4c468276ca587119a574 to your computer and use it in GitHub Desktop.
Save ericjgruber/4c468276ca587119a574 to your computer and use it in GitHub Desktop.
Vertical alignment
/* As seen at 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