Skip to content

Instantly share code, notes, and snippets.

@gothburz
Created October 28, 2015 19:25
Show Gist options
  • Save gothburz/6e46351687c718f7f6aa to your computer and use it in GitHub Desktop.
Save gothburz/6e46351687c718f7f6aa to your computer and use it in GitHub Desktop.
Vertical align an element inside a div
/* Mixin */
@mixin vertical-align($position: relative) {
position: $position;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
/* Call */
@include vertical-align();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment