Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a layout similar to:

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

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

share|improve this question
22  
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
Dammit, it sucks when you have the best answer and it's not accepted, but buried. – kape123 Jan 24 at 5:09
buti-oxa's answer is most complete! – CoR Apr 2 at 12:18

15 Answers

The solution is to use <span> and set it to display: inline-block.

share|improve this answer
3  
Here I am, lurking at this thread 3 months later and I find some CSS wisdom. Tahnks! :) – cesarsalazar Dec 27 '10 at 3:39
89  
@leif81 You can use a span or a div or ul or anything else, the important part is for the container you would like to be minimum width have the CSS property display: inline-block – miahelf Nov 17 '11 at 8:23
1  
Visual Studio 2010 design view does not render this correctly even if the containing elements have "display:block;float:left;" - they will all show vertically with the div width equal to widest element inside. But the browsers all show this correctly (even IE). – Johncl Dec 22 '11 at 13:58
8  
I used display: inline-block with div and it works. – ovunccetin Jun 20 '12 at 12:52
8  
-1 - This is invalid HTML. – uınbɐɥs Aug 31 '12 at 20:57
show 6 more comments

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
  • table element

when there are no width specified. 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.

share|improve this answer
3  
+1 Maybe table caption is all you need – Matthew Lock May 4 '10 at 7:11
4  
I would say inline-block is exactly intended for this and solves the problem perfectly. – miahelf Nov 17 '11 at 8:24
3  
+1 Best of all the answers. – its_me Dec 28 '11 at 19:25
1  
Nice discussion. – steampowered Oct 19 '12 at 14:10

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-block;
}
share|improve this answer
13  
To answer the browser compatibility question: this won't work with IE7/8 on DIV elements. You have to use SPAN elements. – Matt Brock Feb 18 '11 at 14:26
@Matt Brock No, you don't have to. To make an element inline-block in IE 7 or higher, you need to set it to inline and give it a layout afterwards: *display: inline; zoom: 1;. (Oh, I missed the answer from kape123) – feeela Jul 6 '12 at 15:09
@feeela - Yes, you do have to. Please take a second to actually read kape123's link, and take particular note of the statement: "IE supports inline-block, but only for elements that are natively inline." – Matt Brock Jul 6 '12 at 15:53
@Matt Brock Please consider your own advise and actually read the whole article or set up your own test case: "However, if you trigger hasLayout on a block element, and then set it to display:inline, it magically becomes an inline-block in IE!" I'm using this trick for several years now on many customer websites and it works perfectly to use a DIV or any other element as an inline-block-element in IE 7 and 8. (zoom: 1; is the most unobtrusive way to set hasLayout on an element in IE) – feeela Jul 9 '12 at 10:23
@feeela - I always put a * in front of the zoom e.g. *display: inline; *zoom: 1;. I haven't tested for this particular situation, but I have always found in the past that the hasLayout hack is only required for IE7, or IE8 in IE7-mode (or IE8 in quirks!). – robocat Aug 7 '12 at 23:24
show 2 more comments
display:-moz-inline-stack;
display:inline-block;
zoom:1;
*display:inline;

http://foohack.com/2007/11/cross-browser-support-for-inline-block-styling/

share|improve this answer
1  
Thanks! This worked for me including IE. – bychkov Jan 17 '11 at 20:29
1  
Anyone having this issue should add all these styles. Firefox added margins when not using -moz-inline-stack – Justin Jul 17 '12 at 18:48

display: inline-block adds an extra margin to your element.

What I would recommend is:-

#element {
    display: table; /* IE8+ and all other modern browsers */
}
share|improve this answer
1  
+1 - This is the best, and most clean, solution for modern browsers that also allows the element to be centered. A conditional comment with position: absolute is necessary for < IE8. – uınbɐɥs Jul 6 '12 at 9:22
1  
Specifying display: inline-block does not add any margins. But CSS handles whitespace to be shown between inline elements. – feeela Jul 6 '12 at 15:05
1  
My favourite answer so far!! – Xavier_Ex Dec 2 '12 at 0:19
1  
Worked for me.. – Deepak Jan 16 at 19:03
width:1px;
white-space: nowrap;

works fine for me :)

share|improve this answer
this works even for me in firefox and chrome, and display:inline-block; did not work in chrome – albanx Jul 7 '12 at 20:06
+1 for nowrap, worked for my particular case (firefox, chrome). – Rui Marques Jan 3 at 16:55
But then again my case was text inside a div, and not a table like the OP. – Rui Marques Jan 3 at 16:57

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;
}
share|improve this answer
2  
min-width doesn't work in Firefox 3 and IE 8. – Pavel Chuchuva Oct 18 '09 at 23:27
3  
It should. Which doctype are you using? – Soviut Oct 18 '09 at 23:35
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>

    <div id="content_lalala">
        this content inside the div being inside a table, needs no inline properties and the table is the one expanding to the content of this div =)
    </div>

</td>
</tr>
</table>

I know people don't like tables sometimes, but I gotta tell you, I tried the css inline hacks, and they kinda worked in some divs but in others didn't, so, it was really just easier to enclose the expanding div in a table...and...it can have or not the inline property and still the table is the one that's gonna hold the total width of the content. =)

share|improve this answer
1  
It's not the "proper" way, but IE6/7/8 often just don't play nice when things get a bit complicated, so I totally understand why you would do it this way. You got my up vote. – Craigo Mar 27 '12 at 6:26

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.

share|improve this answer
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

What works for me is

display: table

in the div. (Tested on firefox and google chrome).

share|improve this answer

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.

share|improve this answer
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

Tampering around with Firebug I found the property value -moz-fit-content which exactly does what the asker wanted and could be used as follow:

width: -moz-fit-content;

Although it only works on Firefox, I couldn't find any equivalent for other browsers such as Chrome.

share|improve this answer

i tried div.classname{display:table-cell;} and it worked!

share|improve this answer

I have solved a similar problem (where I didn't want to use display: inline-block because the item was centered) by adding a span tag inside the div tag, and moving the CSS formatting from the outer div tag to the new inner span tag. Just throwing this out there as another alternative idea if display: inline block isn't a suitable answer for you.

share|improve this answer

This seems to work fine for me on all browsers. Example is an actual ad i use online and in newsletter. Just change the content of the div. It will adjust and shrinkwrap with the amount of padding you specify.

<div style="float:left; border: 3px ridge red; background: aqua; padding:12px">
    <font color=red size=4>Need to fix a birth certificate? Learn <a href="http://www.example.com">Photoshop in a Day</a>!
    </font>
</div>
share|improve this answer
1  
font is utterly deprecated. probably renders as <span> on any current engine. – zanlok Apr 2 at 4:13

protected by jtbandes Aug 26 '11 at 8:18

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.