Skip to content

Instantly share code, notes, and snippets.

@coffeepostal
Last active January 18, 2017 23:15
Show Gist options
  • Save coffeepostal/0b6c3a4bcb76c0c9ede36395f1b3f762 to your computer and use it in GitHub Desktop.
Save coffeepostal/0b6c3a4bcb76c0c9ede36395f1b3f762 to your computer and use it in GitHub Desktop.
SCSS: Vertically Center Mixin
/* Mixin */
@mixin vertical-align($position: relative) {
position: $position;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.element p {
@include vertical-align();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment