vote up 6 vote down star
2

Hello, I have a layout similar to:

<div>
    <table>
    </table>
</div>

I would like for the Div element to only expand to as wide as my table element becomes.

Any suggestions?

Thanks!

flag
the effect is called "shrinkwrapping", and as answered there's a couple of ways to do this (float, inline, min/max-width) all of which have side-effects to choose from – annakata Jan 16 '09 at 16:32

6 Answers

vote up 4 vote down

You want a block element that has what CSS calls shrink-to-fit width and the spec does not provide a blessed way to get such a thing. In CSS2, shrink-to-fit is not a goal, but means to deal with a situation where browser "has to" get a width out of thin air. Those situations are:

  • float
  • absolutely positioned element
  • inline-block element

when there are no width specified. Plus, there is a table. I heard they think of adding what you want in CSS3. For now, make do with one of the above.

The decision not to expose the feature directly may seem strange, but there is a good reason. It is expensive. Shrink-to-fit means formatting at least twice: you cannot start formatting an element until you know its width, and you cannot calculate the width w/o going through entire content. Plus, one does not need shrink-to-fit element as often as one may think. Why do you need extra div around your table? Maybe table caption is all you need.

link|flag
vote up 2 vote down

A CSS2 compatible solution is to use:

.my-div
{
    min-width: 100px;
}

You can also float your div which will force it as small as possible, but you'll need to use a clearfix if anything inside your div is floating:

.my-div
{
    float: left;
}
link|flag
min-width doesn't work in Firefox 3 and IE 8. – Pavel Chuchuva Oct 18 at 23:27
It should. Which doctype are you using? – Soviut Oct 18 at 23:35
vote up 2 vote down

If you need it to be the width of its child, yet still position itself like a block element you could try this:

div.containerDiv {
  text-align:center;
}
div.holderDiv {
  display:inline;
}

/* containerDiv keeps clear:both in action */
<div class="containerDiv">
    /* holderDiv will become an inline element */
    <div class="holderDiv">
      <table>...</table>
    </div>
</div>

Then again, this could defeat the purpose of div.holderDiv anyway depending on your context.

link|flag
Center??? I'd call that bad practice. – strager Jan 16 '09 at 17:41
I would agree. But it's one of many options. – Jonathan Sampson Jan 16 '09 at 17:46
It just dawned on me that I could use text-align:center; since the child div is now display:inline. – Jonathan Sampson Jan 16 '09 at 17:49
vote up 1 vote down

Not knowing in what context this will appear, but I believe the CSS-style property 'float' either left or right will have this effect. On the other hand, it'll have other side effects as well, such as allowing text to float around it.

Please correct me if I'm wrong though, I'm not 100% sure, and currently can't test it myself.

link|flag
Yes, in CSS 2.1. (CSS2.0 would make the float full-width,but only IE5/Mac actually does that). Tables and floats are the only display types that can shrink-to-fit their contents. – bobince Jan 16 '09 at 16:14
vote up 1 vote down

I think using

display: inline-block;

would work, however I'm not sure about the browser compatibility.


Another solution would be to wrap your DIV in another one (if you want to maintain the block behavior):

HTML:

<div>
    <div class="yourdiv">
        content
    </div>
</div>

CSS:

.yourdiv
{
    display: inline;
}
link|flag
vote up 0 vote down
display: inline-block;

works great, in every browser except IE. Is there a simple IE fix? Or do I really need to resort to nested divs?

link|flag

Your Answer

Get an OpenID
or

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