Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
Last active July 20, 2022 20:07
Show Gist options
  • Save BlazerYoo/f463e4fe18edd85c29c15d2eaeaa5237 to your computer and use it in GitHub Desktop.
Save BlazerYoo/f463e4fe18edd85c29c15d2eaeaa5237 to your computer and use it in GitHub Desktop.
Center all content in HTML
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