Skip to content

Instantly share code, notes, and snippets.

@nickberens360
Last active December 26, 2015 23:59
Show Gist options
  • Save nickberens360/7234803 to your computer and use it in GitHub Desktop.
Save nickberens360/7234803 to your computer and use it in GitHub Desktop.
Vertically center content
.table{
display:table;
width:100%;
overflow: hidden;
position:relative;
}
.cell {
display: table-cell;
vertical-align: middle;
width: 100%;
margin: 0 auto;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment