Created
January 16, 2019 17:29
-
-
Save cnmoro/1ad89d05020f2fa812ab9b9e9d7c3738 to your computer and use it in GitHub Desktop.
Center content inside div (vertically, horizontally)
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
Vertical: | |
div { | |
display: -webkit-flex; | |
display: flex; | |
align-items: center; | |
} | |
<div> | |
Your text here. | |
</div> | |
--------- | |
Horizontal: | |
div { | |
display: -webkit-flex; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
<div> | |
Your text here. | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment