Skip to content

Instantly share code, notes, and snippets.

@baiIey
Last active September 11, 2015 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baiIey/09e7d93100d94ddc2ca8 to your computer and use it in GitHub Desktop.
Save baiIey/09e7d93100d94ddc2ca8 to your computer and use it in GitHub Desktop.
Simple CSS vertical and horizontal centering (late 2015)
*{
margin: 0;
padding: 0;
}
body, html{
height: 100%;
}
.container{
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.container p{
max-width: 50%;
padding: 15px;
background-color: #f1f1f1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment