Skip to content

Instantly share code, notes, and snippets.

@Nixinova
Last active February 25, 2021 06:49
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 Nixinova/3018bc0856f099899f09c547ba72a97e to your computer and use it in GitHub Desktop.
Save Nixinova/3018bc0856f099899f09c547ba72a97e to your computer and use it in GitHub Desktop.
Centering in CSS
.grid {
display: grid;
place-items: center;
}
/* or */
.flex {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment