Skip to content

Instantly share code, notes, and snippets.

@dmurawsky
Created February 19, 2018 02:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmurawsky/d0a7086ed37879c824fcb4e3db57f53b to your computer and use it in GitHub Desktop.
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