Skip to content

Instantly share code, notes, and snippets.

@herrseiler
Last active February 16, 2016 12:01
Show Gist options
  • Select an option

  • Save herrseiler/99b044a941c2540dd531 to your computer and use it in GitHub Desktop.

Select an option

Save herrseiler/99b044a941c2540dd531 to your computer and use it in GitHub Desktop.
Sass Mixin – Vertical Align
@mixin vertical-align {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment