Created
July 11, 2016 13:37
-
-
Save KeithNdhlovu/24f20934b71f1681b78df84b4c9d5c53 to your computer and use it in GitHub Desktop.
Css3 Vertical 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
.valign-wrapper { | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-align-items: center; | |
-ms-flex-align: center; | |
align-items: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment