Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 21:20
Show Gist options
  • Save jasonkmccoy/cb47a55e0f5ef6ba699c to your computer and use it in GitHub Desktop.
Save jasonkmccoy/cb47a55e0f5ef6ba699c to your computer and use it in GitHub Desktop.
vertical-align mixin: Vertically aligning elements is challenging even with CSS, but this mixin gives you a nice simple solution
@mixin vertical-align {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
// Usage
div {
@include vertical-align();
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment