Skip to content

Instantly share code, notes, and snippets.

@codekipple
Created May 13, 2015 10:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codekipple/20e4060d527cf49da87d to your computer and use it in GitHub Desktop.
Save codekipple/20e4060d527cf49da87d to your computer and use it in GitHub Desktop.
vertically align things in css
http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/
position: relative;
top: 50%;
transform: translateY(-50%);
# if % value on top does not work use absolute positioning
position: absolute;
top: 50%;
transform: translateY(-50%);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment