Skip to content

Instantly share code, notes, and snippets.

@CassyJens
Created January 8, 2015 00:56
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 CassyJens/ec8ba0ab1f66deb597ed to your computer and use it in GitHub Desktop.
Save CassyJens/ec8ba0ab1f66deb597ed to your computer and use it in GitHub Desktop.
vertical center div for all browsers
.outer {
display: table;
height: 100%;
position: absolute;
width: 100%;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.inner {
margin-left: auto;
margin-right: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment