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?
display:table;on#containerbut nottable-cellon#container > div? Tables are still block-elements, which always stretch to the width available (in this case 180px) – make itinline-blockalso… See also: reference.sitepoint.com/css/display – feeela Aug 18 '11 at 16:34float: 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