Skip to content

Instantly share code, notes, and snippets.

@sundaycrafts
Created May 28, 2015 09:07
Show Gist options
  • Save sundaycrafts/3a194e010b69874c350b to your computer and use it in GitHub Desktop.
Save sundaycrafts/3a194e010b69874c350b to your computer and use it in GitHub Desktop.
sass: vertical centering
%vCentering {
// https://css-tricks.com/centering-in-the-unknown/
text-align: center;
white-space: nowrap;
overflow-x: hidden;
&:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -.25em;
}
}
%vCentering_inner {
width: 100%;
display: inline-block;
vertical-align: middle;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment