I am trying to use shrink to fit on #container. It works perfectly until the elements it contains wrap. This causes it to expand to 180px.

CSS:

#screen-dimensions 
{
    width: 250px;
    height: 100px;
    background-color: yellow;
}
#container
{
    display: table;
    background-color:red;
    border: 5px solid pink;
}
#container > div
{
    display: inline-block;
    width: 160px;
    background-color: blue;
    border: 5px solid lightBlue;
}

HTML:

<div id="screen-dimensions">
    <div id="container">
        <div>content</div>
        <div>content</div>
    </div>
</div>

I understand why this behavior occurs but I haven't been able to find any workarounds.

Can this be fixed?

link|improve this question

71% accept rate
Why do you use display:table; on #container but not table-cell on #container > div? Tables are still block-elements, which always stretch to the width available (in this case 180px) – make it inline-block also… See also: reference.sitepoint.com/css/display – feeela Aug 18 '11 at 16:34
Tables behave unlike other block and shrink to fit their content. However I have modified my question so that the behavior is clearer. – Timesquare Aug 18 '11 at 17:26
"the behavior is clearer" not really, as the float: left; doesn't change anything and I still did not know what the desired result should look like. jsfiddle.net/feeela/Anc3v – feeela Aug 18 '11 at 17:30
I hope this had made it clearer. I don't want the red container to be visible, I need it to shrink to fit the contained DIVs. – Timesquare Aug 18 '11 at 17:44
feedback

1 Answer

I achieved that by playing around with the display properties:

#container
{
    display: inline-block;
}
#container > div
{
    display: block;
}

See: http://jsfiddle.net/feeela/Anc3v/

link|improve this answer
Unfortunately, this does not dynamically resize itself as the screen dimensions change. – Timesquare Aug 18 '11 at 17:56
Well, no better idea here. – feeela Aug 18 '11 at 18:06
feedback

Your Answer

 
or
required, but never shown

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