Skip to content

Instantly share code, notes, and snippets.

@tonY1883
Last active February 20, 2019 08:15
Show Gist options
  • Save tonY1883/3dcedc60280020478ae49530e0a4f862 to your computer and use it in GitHub Desktop.
Save tonY1883/3dcedc60280020478ae49530e0a4f862 to your computer and use it in GitHub Desktop.
CSS code for elements to sit right in the center of the page.
.center {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
}
<div class="center">
Contents
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment