Take a look at this piece of code

The height of the div is set to 100px, and overflow: hidden is hiding the content over 100px. What I want to do is to make the <ul> element fluid so regardless of the height of the parent div, the <h2> element stays at the top, .controlpanel div stays at the bottom and the <ul> element resizes to fit. I tried using percentage heights but it's possible to get them accurate.

link|improve this question

The ul alone is ~140px high. If the parent's height is only 100px, how is everything supposed to fit? – thirtydot Jul 20 '11 at 11:16
The ul's height needs to be liquid. – gAMBOOKa Jul 20 '11 at 11:24
So hiding some of the text in the ul is acceptable? – thirtydot Jul 20 '11 at 11:25
Yes, it is, scrollbars are ok. – gAMBOOKa Jul 20 '11 at 11:32
feedback

2 Answers

up vote 1 down vote accepted

Hard to understand the question :P but i think i got the gist of what you want, check it out http://jsfiddle.net/andresilich/Y7gKB/9/

link|improve this answer
That's it! Sorry I should've taken some time to clear the question out to everybody. – gAMBOOKa Jul 21 '11 at 9:48
It's ok :D, happens to me all the time as well. Structure is hard to convey :/ – Andres Ilich Jul 21 '11 at 14:20
@TomRoggero What doesn't work? – Andres Ilich Jan 5 at 3:00
The fiddle link result is not fluid height in the middle hehe – Tom Roggero Jan 6 at 17:06
feedback

I have updated the fiddle: http://jsfiddle.net/Y7gKB/5/

Not sure if thats what you wanted?

link|improve this answer
No, what I want is... for instance, I set the div's height to 500px, it should stretch to 500px. – gAMBOOKa Jul 20 '11 at 11:04
bit confused what you mean by "Stretch to" but have updated fiddle – benhowdle89 Jul 20 '11 at 11:12
jsfiddle.net/Y7gKB/6 – Lollero Jul 20 '11 at 11:16
@lollero same as mine ;) – benhowdle89 Jul 20 '11 at 11:18
@Lollero - Close but I cannot use absolute position because I'm using a liquid layout. – gAMBOOKa Jul 20 '11 at 11:24
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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