Skip to content

Instantly share code, notes, and snippets.

@mhairston
Last active November 5, 2015 18:37
Show Gist options
  • Save mhairston/fcdef8a41d04a68974a5 to your computer and use it in GitHub Desktop.
Save mhairston/fcdef8a41d04a68974a5 to your computer and use it in GitHub Desktop.
Vertically Center in 3 lines of CSS
/*
Vertically center
From http://csstricks.com
No styles needed on parent.
*/
.u-vertical-center {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment