How do I center a div in a browser so it stays centered even when I make the browser width smaller than the div width?
I am currently using this:
BODY
{
text-align: center;
}
#wrapper
{
width: 1000px;
margin-left: auto;
margin-right: auto;
}
But the left side of my browser blocks the div when I resize.