to center the div of both hor and ver you can do this:
Markup
<div class="centered"></div>
CSS
.centered{
position:absolute;
width:100px;
height:100px;
left:50%;
top:50%;
margin-left:-50px;
margin-top:-50px;
}
script: http://jsfiddle.net/steweb/qSvAQ/1/
source
share