I am trying to achieve something like a regular windows' window with a title and a scrollable content area. The .frame shrinks to fit its variable size content and is limited only by max-width/max-height:

<div class="frame">
    <div class="title">title</div>
    <div class="content scrollable">content of variable width/height</div>
</div>

So, basically, no outer width/height are set, the .frame width/height is limited just by max-width, max-height, other than that the .frame shrinks to fit its content. The result will look like just a regular windows window with a titlebar and variable width/height content, which should scroll if the frame's height/width exceeds some max values. How can it be done in css?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted
div.frame
{
max-width: 400px;
max-height: 200px;
overflow: auto;
}

Fiddle

link|improve this answer
WOW! I did not even think about such a crazy solution as adding a display:fixed; to the .title! Thank you! The CSS is such a crazy world!!! – fedor_bel May 30 '11 at 18:17
If that worked for you, you can mark the answer as "correct"! – Jawad May 30 '11 at 18:22
Not "display: fixed" but "position: fixed" – Jawad May 30 '11 at 18:24
yes, sorry, of course, got tired after trying to find a solution for several hours. – fedor_bel May 30 '11 at 18:27
No probs mate. Happens to the best of us! – Jawad May 30 '11 at 18:32
feedback

Your Answer

 
or
required, but never shown

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