I have a <div id="wrapper">
container in which my whole site content will be present. I have tried to make the div center vertically and horizontally by using css property like margin:0 auto; on #wrapper
.
#wrapper
{
width:500px;
height:500px;
margin:0 auto;
background:#f7f7f7;
}
By using above css i can make the div in (top center) of screen but how to make it center(vertically). when i zoom out in firefox my div is going to zoom out in top center but what i want it should be always present in the center of screen from both vertically and horizontally.
Can any one suggest me how can i get the layout like that.
Thanks in advance.