Created
March 7, 2016 16:52
-
-
Save adamalesandro/19a2adeafa30ce8a433f to your computer and use it in GitHub Desktop.
Vertical Centering css
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
.vertical-center { | |
min-height:calc(100% - 0px); | |
min-height:calc(100vh - 0px); | |
display:flex; | |
vertical-align:center; | |
align-items:center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment