Created
February 3, 2020 06:49
-
-
Save shivampip/24dbb87ee1db2c8f2e0e01713e7bbd2b to your computer and use it in GitHub Desktop.
CSS Vertical and Horizontal align center
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
.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