Skip to content

Instantly share code, notes, and snippets.

@shivampip
Created February 3, 2020 06:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shivampip/24dbb87ee1db2c8f2e0e01713e7bbd2b to your computer and use it in GitHub Desktop.
Save shivampip/24dbb87ee1db2c8f2e0e01713e7bbd2b to your computer and use it in GitHub Desktop.
CSS Vertical and Horizontal align center
.outer {
display: flex;
justify-content: center;
align-items: center;
}
.innter{
align-self: center; /*optional*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment