Last active
June 27, 2018 07:16
-
-
Save vuonglam94/90a9f83b86804bf23b599c7a54f67ee2 to your computer and use it in GitHub Desktop.
[HTML-CSS] Div vertical-align: middle in another div
This file contains 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
/*CLASS OUTER DIV*/ | |
.outer { | |
display: table; | |
} | |
/*CLASS INNER DIV*/ | |
.inner { | |
display: table-cell; | |
vertical-align: middle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment