Return to Snippet

Revision: 16286
at July 30, 2009 11:26 by coreypurcell


Initial Code
<div class="container">
  <div class="cell">
    <div class="content">
    </div>
  </div>
</div>

.container {
  display: table;
  height: 100%;
  width: 100%;
}
.cell {
  display: table-cell;
  vertical-align: middle;
  /* For IE6/7 */
  position: relative;
  top:expression(this.parentNode.clientHeight/2 - this.firstChild.clientHeight/2 + " px");
}
.content {
  /* center horizontally */
  margin: 0 auto;
  width: 400px;
}

Initial URL


Initial Description


Initial Title
Center Vertically with scaled content

Initial Tags
textmate, design, center

Initial Language
Other