Centering a page using DIV block
#container {
width: 900px ;
margin-left: auto ;
margin-right: auto ;
}
This works with IE 6, 7, Firefox, Opera and Safari
To overcome this pre-IE6 do this
body
{
text-align: center;
}
#container {
text-align: left;
width: 900px;
margin: 0 auto
}
Comments