Skip to content

Instantly share code, notes, and snippets.

@misterbailey
Last active November 16, 2016 13:40
Show Gist options
  • Save misterbailey/13545c5646974b99083d401ff0c1b2a8 to your computer and use it in GitHub Desktop.
Save misterbailey/13545c5646974b99083d401ff0c1b2a8 to your computer and use it in GitHub Desktop.
Vertical align class I use often
.v-align-wrapper {
position: absolute;
left: 0;
bottom: 0;
top: 0;
width: 100%;
height: 100%;
display: table;
margin: 0 auto;
.v-align {
display: table-cell;
vertical-align: middle;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment