Skip to content

Instantly share code, notes, and snippets.

@sarvar
Created March 11, 2019 09:59
Show Gist options
  • Save sarvar/171bc04785cb910c7303ad78186c1e04 to your computer and use it in GitHub Desktop.
Save sarvar/171bc04785cb910c7303ad78186c1e04 to your computer and use it in GitHub Desktop.
How to vertically align div on page with flexbox
.container{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
<div class="container">
<div>
Some vertical and horizontal aligned text
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment