Last active
February 29, 2016 21:19
-
-
Save gianlucacandiotti/10239747e81db5ced6cb to your computer and use it in GitHub Desktop.
Scss placeholders for vertical alignment
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 { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
} | |
%absolute-vertical-align { | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment