Skip to content

Instantly share code, notes, and snippets.

@benmccallum
Created July 3, 2015 02:08
Show Gist options
  • Save benmccallum/7ed4c1aa87e8b6537241 to your computer and use it in GitHub Desktop.
Save benmccallum/7ed4c1aa87e8b6537241 to your computer and use it in GitHub Desktop.
CSS - Vertical align
.parent-element {
transform-style: preserve-3d;
}
.element {
position: relative;
top: 50%;
transform: translateY(-50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment