Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 3 divs, all positioned: absolute, but the div I want to fill the width of the window will only adapt to the length of the text within it. I want the yellow div #help to fill the remainder of the window.

I know this sounds noob but I cannot find the solution anywhere.

<div id="tab1">tab1</div>
<div id="tab2">tab2</div>
<div id="help">help</div>

    #tab1 {position: absolute;
    bottom; 0px;
    right: 0px;
    width: 50px;
    height: 20px;
    background-color: green;
}


#tab2 {position: absolute;
    bottom; 0px;
    right: 50px;
    width: 50px;
    height: 20px;
    background-color: yellow;
}

#help {position: absolute;
    bottom; 0px;
    right: 100px;
    height: 20px;
    background-color: red;
}

JS Fiddle: http://jsfiddle.net/FBWzX/

share|improve this question
The yellow div is not #help. So which one should fill what? – bažmegakapa May 12 '12 at 8:17

1 Answer

up vote 2 down vote accepted

If you want #help to stretch, you can set the left and right values at the same time. This trick also works with top and bottom. Absolute positioned elements are quite flexible.

#help {
    position: absolute;
    left: 0;
    right: 100px;
}

jsFiddle Demo

share|improve this answer
1  
Ah yes help is red. Thanks @bažmegakapa! Helpful to know you can use both. – Joe Isaacson May 12 '12 at 9:21

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.