Skip to content

Instantly share code, notes, and snippets.

@hatefulcrawdad
Created January 24, 2014 23:18
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save hatefulcrawdad/8608844 to your computer and use it in GitHub Desktop.
Save hatefulcrawdad/8608844 to your computer and use it in GitHub Desktop.
Vertical Align all the things!
// Source Article: http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/
@mixin vertical-align {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment