Skip to content

Instantly share code, notes, and snippets.

@andrewjmead
Created November 27, 2015 20:44
Show Gist options
  • Save andrewjmead/6622c3715abd20c03998 to your computer and use it in GitHub Desktop.
Save andrewjmead/6622c3715abd20c03998 to your computer and use it in GitHub Desktop.
Vertical Center Auto-prefixed
.vertical-center {
min-height: 100vh;
margin: 0;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment