Skip to content

Instantly share code, notes, and snippets.

@antfu
Created August 23, 2016 15:36
Show Gist options
  • Save antfu/b371f2521e92645227314a5aa1184777 to your computer and use it in GitHub Desktop.
Save antfu/b371f2521e92645227314a5aa1184777 to your computer and use it in GitHub Desktop.
[CSS] Vertical align
.element {
position: relative;
top: 50%;
transform: perspective(1px) translateY(-50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment