Skip to content

Instantly share code, notes, and snippets.

View waldyrious's full-sized avatar

Waldir Pimenta waldyrious

View GitHub Profile
@waldyrious
waldyrious / flexbox-center.css
Created December 8, 2012 22:30
Center the contents of a html page
html, body { height: 100% /* html also needs height:100% */ }
body {
display: -moz-box;
-moz-box-pack: center;
-moz-box-align: center;
-moz-box-orient: vertical;
display: -webkit-box;
-webkit-box-pack: center;