Skip to content

Instantly share code, notes, and snippets.

@gianlucacandiotti
Last active February 29, 2016 21:19
Show Gist options
  • Save gianlucacandiotti/10239747e81db5ced6cb to your computer and use it in GitHub Desktop.
Save gianlucacandiotti/10239747e81db5ced6cb to your computer and use it in GitHub Desktop.
Scss placeholders for vertical alignment
%vertical-align {
position: relative;
top: 50%;
transform: translateY(-50%);
}
%absolute-vertical-align {
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