Skip to content

Instantly share code, notes, and snippets.

@zires
Created December 29, 2011 07:05
Show Gist options
  • Select an option

  • Save zires/1532495 to your computer and use it in GitHub Desktop.

Select an option

Save zires/1532495 to your computer and use it in GitHub Desktop.
垂直居中
<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