Skip to content

Instantly share code, notes, and snippets.

@lucasprogamer
Last active March 26, 2019 16:48
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 lucasprogamer/bb127bd896ea6cb88db8be1220029a93 to your computer and use it in GitHub Desktop.
Save lucasprogamer/bb127bd896ea6cb88db8be1220029a93 to your computer and use it in GitHub Desktop.
Center Element vertical and Horizontal
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment