Last active
September 11, 2015 04:56
-
-
Save baiIey/09e7d93100d94ddc2ca8 to your computer and use it in GitHub Desktop.
Simple CSS vertical and horizontal centering (late 2015)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*{ | |
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