Skip to content

Instantly share code, notes, and snippets.

@vennsoh
Created August 28, 2012 13:00
Show Gist options
  • Save vennsoh/3497800 to your computer and use it in GitHub Desktop.
Save vennsoh/3497800 to your computer and use it in GitHub Desktop.
Untitled
body, html {
height: 100%;
}
.container{
position: relative;
width: 300px;
height: 300px;
background-color: red;
margin:auto;
}
.item{
position: absolute;
width: 100px;
height: 100px;
background-color: blue;
left:0;
right:0;
top:0;
bottom:0;
margin: auto;
}
.wrappert {
height: 100%;
width: 100%;
display: table;
}
.wrapper {
height: 100%;
vertical-align: middle;
display: table-cell;
text-align: center;
}
<div class = "wrappert">
<div class = "wrapper">
<div class="container">
<div class="item"></div>
</div>
</div>
</div>​
{"view":"split-vertical","fontsize":"80","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment