Last active
August 29, 2015 14:05
-
-
Save jyek/e04cf59e9dcf823806da to your computer and use it in GitHub Desktop.
CSS Tricks
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 vertical | |
.center-vertical { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
} | |
// Center horizontal | |
.center-horizontal { | |
position: relative; | |
left: 50%; | |
transform: translateX(-50%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment