Skip to content

Instantly share code, notes, and snippets.

@grtner
Created April 17, 2012 06:12
Show Gist options
  • Save grtner/2403843 to your computer and use it in GitHub Desktop.
Save grtner/2403843 to your computer and use it in GitHub Desktop.
Vertical centering with Flexbox + margin fallback
/**
* Vertical centering with Flexbox + margin fallback
* Lea Verou & David Storey
*/
html, body { height: 100%; }
body {
width: 100%; /* needed for FF */
margin: 0;
display: box; display: flexbox;
box-align: center; flex-align: center;
box-pack: center; flex-pack: center;
}
div {
padding: 1em 1.5em;
margin: 1em auto;
/* Make it pretty */
background: slategray;
text-align: center;
border-radius: .3em;
font: bold 100% sans-serif;
}
<div contentEditable>OMG, I’m centered!</div>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment