Last active
March 26, 2019 16:48
-
-
Save lucasprogamer/bb127bd896ea6cb88db8be1220029a93 to your computer and use it in GitHub Desktop.
Center Element vertical and Horizontal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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