Created
October 25, 2012 23:50
-
-
Save gunnarbittersmann/3956210 to your computer and use it in GitHub Desktop.
How To Vertically Center
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
| /** | |
| * How To Vertically Center | |
| * http://www.vanseodesign.com/css/dynamic-vertical-centering/#comment-336477 | |
| */ | |
| #parent { | |
| display: table-cell; | |
| height: 500px; | |
| width: 450px; | |
| vertical-align: middle; | |
| background: #ccc; | |
| } | |
| .child { | |
| width: 300px; | |
| height: 150px; | |
| margin: auto; | |
| background: #333333; | |
| outline: 1px solid #FFFFFF; | |
| } |
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
| <div id="parent"> | |
| <div class="child"></div> | |
| <div class="child"></div> | |
| </div> |
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
| {"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment