Skip to content

Instantly share code, notes, and snippets.

@voronoy
Last active August 29, 2015 14:08
Show Gist options
  • Save voronoy/bd8a3ea2919bb3cbfa21 to your computer and use it in GitHub Desktop.
Save voronoy/bd8a3ea2919bb3cbfa21 to your computer and use it in GitHub Desktop.
vertical align center
.parent-element {
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.element {
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