Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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: enter image description here

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.

share|improve this question
Your requirements don't really make sense. The "child div" must stay as a child of the parent div, and yet the parent div has position: relative? What do you need position: relative for? I guess what I'm asking is: what are you trying to do? – thirtydot Apr 7 '11 at 21:28
The position: relative on the parent is required for other reasons. I'm using 960 grid css, and it adds position: 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:08
...On the actual site I am working on the child div is actually a header container within the parent. The parent is 960px wide and centered. This is fairly normal. The design calls for a header background image the stretches across the entire width of the browser. I would use a background on the body but 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
@Camsoft: Thanks for the explanation, that does seem to make sense. It's the part about not being able to change HTML that really explains it. It's trivial to do this if you can use jQuery to do the resizing. Would you like me to write an answer that uses it? One other thing - what's going inside this div? You might be able to do it without jQuery if you don't care about the div being excessively wide (like 3x wider than the viewport). Let me know what you think. – thirtydot Apr 8 '11 at 8:25
@Camsoft Did you see my comment on my answer? That works for me, Also check my website edocuments.co.uk which does what you are trying to do in a different way – Blowsie Apr 8 '11 at 14:41
show 1 more comment

4 Answers

up vote 13 down vote accepted

Use absolute positioning

.child-div {
    position:absolute;
    left:0;
    right:0;
}
share|improve this answer
looks like the correct answer – Han Dijk Apr 7 '11 at 12:38
1  
Though there's a missing semi-colon :) – Ash Burlaczenko Apr 7 '11 at 12:41
@Ash Burlaczenko Thanks for spotting that , updated – Blowsie Apr 7 '11 at 12:45
2  
Ok, next question, what if the parent or another ancestor has layout i.e. position: relative, see: jsfiddle.net/v2Tja/2 – Camsoft Apr 7 '11 at 14:00
how about another parent div being position:static, and another div inside with position:relative? jsfiddle.net/blowsie/v2Tja/3 – Blowsie Apr 7 '11 at 15:20
show 1 more comment

you can try position: absolute. and give width and height , top: 'y axis from the top' and left: 'x-axis'

share|improve this answer

This may work:

<div id="t01" class="parent">
  <div class="child"></div>
</div>

.parent {background: none repeat scroll 0 0 red;
    display: block;
    height: 400px;
    left: 50%;
    margin-left: -480px;
    margin-top: -200px;
    overflow: visible;
    position: absolute;
    top: 50%;
    width: 960px;}
.child { background: none repeat scroll 0 0 #EBEBEB;
    height: 300px;
    left: 50%;
    margin-left: -700px;
    margin-top: -150px;
    position: absolute;
    top: 50%;
    width: 1400px}
share|improve this answer
.parent {
    margin:0 auto;
    width:700px;
    border:2px solid red;
}
.child {
    position:absolute;
    width:100%;
    border:2px solid blue;
    left:0;
    top:200px;
}
share|improve this answer
Clever, but doesn't seem to work (with spans embedded within li's, at least). – ruffin Nov 21 '12 at 14:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.