I realize there are lots of examples out there, and I am working from one but cannot seem to get it to function properly.
Here's what I've got currently:
<div id="w">
<div id="iw">
<a href="#">
<img src="http://stackoverflow.com/content/stackoverflow/img/apple-touch-icon.png" />
</a>
</div>
</div>
And:
body {
width:100%;
margin:0;
padding:0;
}
#w {
display:table;
width: 100%;
}
#iw {
display:table-cell;
text-align:center;
vertical-align:middle;
}
#iw a img {
-moz-box-shadow:0 1em 1em #444;
-webkit-box-shadow:0 1em 1em #444;
-o-box-shadow:0 1em 1em #444;
box-shadow:0 1em 1em #444;
-moz-border-radius:10px;
-webkit-border-radius:10px;
-o-border-radius:10px;
border-radius: 10px;
}
(http://jsfiddle.net/rlemon/zjWaz/)
Basically I want to vertically and horizontally centre the iw container.
The idea I had read about is the wrapper container is display: table; and the inner content is display: table-cell; and then you can use the vertical-alignment from the table. Great, now how do I make the table 100% height of the page? best I can do is a fixed height, which (without the use of JS) will not help me be exactly vertically centred.