I have a design layout like this: Click here to view the image
My auto-centered content is styled with the following CSS:
width: 960px;
margin: 0px auto;
Within this auto-centered content, there is a DIV element that needs to span the full width of the browser.
What would be the best approach to create a 100% width DIV in this scenario?
Using
position: absolute /* or fixed */
is not ideal for me because the height of the content above the 100%-DIV varies.