Created
December 29, 2011 07:05
-
-
Save zires/1532495 to your computer and use it in GitHub Desktop.
垂直居中
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 class="wrap"> | |
| <div class="hack"> | |
| <div class="cnt"> | |
| content | |
| </div> | |
| </div> | |
| </div> | |
| /* CSS 部分的代码实现:整体代码参见上述 demo*/ | |
| .wrap{ | |
| width:500px;height:300px;border:3px solid #ddd;margin:0 auto;padding:20px;display:table; | |
| *position:relative; | |
| } | |
| .hack{ | |
| display:table-cell;vertical-align:middle; | |
| *position:absolute;*top:50%; | |
| } | |
| .cnt{ | |
| *position:relative;*top:-50%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment