Created
February 11, 2016 06:16
-
-
Save a-v-ebrahimi/f814ebe0c8eab9b26b7e to your computer and use it in GitHub Desktop.
Center align a block vertically in 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
.center-align-vertically { | |
position: absolute; | |
top: 50%; | |
transform: translateY(-50%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment