This is MY demo Work in JSFIDDLE
NB without using table property
I want to make the class .box
should be vertically centered
CSS
.main{ height:300px; border:1px red solid;position:relative}
.box{width:40px; height:40px; background:red; }
/* for centering */
.box{ display: inline-block;position:relative; top:50% }
.main{ text-align: center; }
HTML
<div class="main">
<div class="box"></div>
</div>