Created
May 28, 2015 09:07
-
-
Save sundaycrafts/3a194e010b69874c350b to your computer and use it in GitHub Desktop.
sass: vertical centering
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
%vCentering { | |
// https://css-tricks.com/centering-in-the-unknown/ | |
text-align: center; | |
white-space: nowrap; | |
overflow-x: hidden; | |
&:before { | |
content: ""; | |
display: inline-block; | |
height: 100%; | |
vertical-align: middle; | |
margin-right: -.25em; | |
} | |
} | |
%vCentering_inner { | |
width: 100%; | |
display: inline-block; | |
vertical-align: middle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment