Skip to content

Instantly share code, notes, and snippets.

@lgrayland
Created November 26, 2015 16:53
Show Gist options
  • Save lgrayland/8187d65b27a19180125e to your computer and use it in GitHub Desktop.
Save lgrayland/8187d65b27a19180125e to your computer and use it in GitHub Desktop.
snippet of scss to vertically align a div
.item-to-align {
&:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment