/* Horizontal Center */
#horizontalcenter {
width: 400px; /* Change this to your container width */
margin: 0 auto;
}
/* Vertical Center */
#verticalcenter {
position: absolute;
top: 50%;
height: 400px; /* Change this to your container height */
margin-top: -200px; /* This should be half your container height */
}
Horizontal and Vertical Center [CSS snippet]
fin