Skip to content

Instantly share code, notes, and snippets.

@shalaby
Created July 8, 2014 10:08
Show Gist options
  • Save shalaby/f2d0a7902fb7228b39b3 to your computer and use it in GitHub Desktop.
Save shalaby/f2d0a7902fb7228b39b3 to your computer and use it in GitHub Desktop.
Center Vertically.
.centerme {
margin: 0 auto;
display: table;
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-o-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