Skip to content

Instantly share code, notes, and snippets.

@dwayne
Forked from denzildoyle/Vertical Center.css
Last active August 29, 2015 14:02
Show Gist options
  • Save dwayne/8582e980747e85e416d2 to your computer and use it in GitHub Desktop.
Save dwayne/8582e980747e85e416d2 to your computer and use it in GitHub Desktop.
Vertically center anything.
// Assumes Bourbon - See http://bourbon.io/docs/#transform
// To see it in action, check out http://codepen.io/dwayne/pen/gjDGx
@mixin vertical-center {
position: relative;
top: 50%;
@include transform(translateY(-50%));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment