Created
April 14, 2016 07:15
-
-
Save MoritzBuetzer/437731b739b2107317f41ec4aa23b4f1 to your computer and use it in GitHub Desktop.
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
| .vertical-align-center { | |
| display: -webkit-flex; | |
| -webkit-flex-direction: column; | |
| -webkit-justify-content: center; | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment