Is there a way to have a child DIV within a parent container DIV that is wider than it's parent. The child DIV needs to be the same width of the browser viewport.
See example below:

The child DIV must stay as a child of the parent div. I know I can set arbitrary negative margins on the child div to make it wider but I can't work out how to essentially make it 100% width of the browser.
I know I can do this:
.child-div{
margin-left: -100px;
margin-right: -100px;
}
But I need the child to be the same width as the browser which is dynamic.
Update
Thanks for your answers, it seems the closest answer so far is to make the child DIV position: absolute, and set the left and right properties to 0.
The next problem I have is that the parent has position: relative, which means that left and right properties are still relative to the parent div and not the browser, see example here: jsfiddle.net/v2Tja/2
I can't remove the position relative from the parent without screwing everything else up.
position: relative? What do you needposition: relativefor? I guess what I'm asking is: what are you trying to do? – thirtydot Apr 7 '11 at 21:28position: relativeon the parent is required for other reasons. I'm using 960 grid css, and it addsposition: relative;to grid containers which the parent is. But I have a child DIV within parent that needs to be 100% width of viewport, hence my question. I'm using a CMS and the HTML is fixed so I'm trying to achieve the above using CSS alone. – Camsoft Apr 8 '11 at 8:08bodybut the header needs to grow and shrink using jQuery and the background image for the header needs to move with it. So I've applied the background image to the child (header) div and am looking for a way to make it 100% width of viewport. – Camsoft Apr 8 '11 at 8:12