Skip to content

Instantly share code, notes, and snippets.

@kyleknighted
Created June 25, 2014 13:24
Show Gist options
  • Save kyleknighted/d86cc2685b5d679c4975 to your computer and use it in GitHub Desktop.
Save kyleknighted/d86cc2685b5d679c4975 to your computer and use it in GitHub Desktop.
Vertical Align
.element {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment