Skip to content

Instantly share code, notes, and snippets.

@csssecrets
Last active September 3, 2022 09:58
Show Gist options
  • Save csssecrets/8aa9aa04ee57f479c513 to your computer and use it in GitHub Desktop.
Save csssecrets/8aa9aa04ee57f479c513 to your computer and use it in GitHub Desktop.
Vertical centering - Flexbox solution
/**
* Vertical centering - Flexbox solution
*/
* { margin: 0 }
body {
display: flex;
min-height: 100vh;
}
main {
padding: 1em 2em;
margin: auto;
box-sizing: border-box;
background: #655;
color: white;
text-align: center;
}
h1 {
margin-bottom: .2em;
font-size: 150%;
}
body {
background: #fb3;
font: 100%/1.5 sans-serif;
}
<main>
<h1>Am I centered yet?</h1>
<p>Center me, please!</p>
</main>
// alert('Hello world!');
{"view":"split-vertical","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