Skip to content

Instantly share code, notes, and snippets.

@soderalohastrom
Created June 22, 2014 01:18
Show Gist options
  • Save soderalohastrom/62d61a2a26bf729fa53b to your computer and use it in GitHub Desktop.
Save soderalohastrom/62d61a2a26bf729fa53b to your computer and use it in GitHub Desktop.
Center horizontally and vertically
@mixin centerer {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment