Skip to content

Instantly share code, notes, and snippets.

@dmurawsky
Created February 19, 2018 02:30
Show Gist options
  • Select an option

  • Save dmurawsky/d0a7086ed37879c824fcb4e3db57f53b to your computer and use it in GitHub Desktop.

Select an option

Save dmurawsky/d0a7086ed37879c824fcb4e3db57f53b to your computer and use it in GitHub Desktop.
How to center with table and cell
.center-table {
height: 100%;
width: 100%;
display: table;
}
.center-cell {
position: relative;
display: table-cell;
vertical-align: middle;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment