Last active
July 20, 2022 20:07
-
-
Save BlazerYoo/f463e4fe18edd85c29c15d2eaeaa5237 to your computer and use it in GitHub Desktop.
Center all content in HTML
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
body { | |
display: flex; | |
/*horizontal center*/ | |
justify-content: center; | |
/*vertial center*/ | |
align-items: center; | |
/*center body*/ | |
margin: auto; | |
/*make content fill screen without scrollbar*/ | |
width: 100vw; | |
height: 100vh; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment