Last active
August 29, 2015 14:04
-
-
Save MarioAraque/17c7805dc23f040e9468 to your computer and use it in GitHub Desktop.
Vertical center with 3 lines of code
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
<div class="content"> | |
<div class="vertical-center">Example content</div> | |
</div> |
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
.content { | |
height: 300px; //Necessary to correct work | |
-webkit-transform-style: preserve-3d; | |
-moz-transform-style: preserve-3d; | |
transform-style: preserve-3d; | |
backgrount-color: #f4f4f4; | |
.vertical-center { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment