Skip to content

Instantly share code, notes, and snippets.

@lenciel
Created January 15, 2014 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lenciel/8441448 to your computer and use it in GitHub Desktop.
Save lenciel/8441448 to your computer and use it in GitHub Desktop.
vertical align anything
%vertical-align {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.element p {
@extend %vertical-align;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment