Skip to content

Instantly share code, notes, and snippets.

@blueridgemountains1
Created March 18, 2018 16:37
Show Gist options
  • Save blueridgemountains1/71993183320cb88bb32b98e40739187c to your computer and use it in GitHub Desktop.
Save blueridgemountains1/71993183320cb88bb32b98e40739187c to your computer and use it in GitHub Desktop.
Center Items in Flex and Grid
/** flex **/
.🦄 {
display: flex;
align-items: center;
justify-content: center;
}
/** grid **/
body {
display: grid;
place-items: center;
height: 100vh;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment