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.
|
|
The solution is to use |
|||||||||||||||||||||
|
|
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:
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. |
|||||||||||||||||
|
|
I think using
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:
CSS:
|
|||||||||||||
|
display:-moz-inline-stack; display:inline-block; zoom:1; *display:inline; http://foohack.com/2007/11/cross-browser-support-for-inline-block-styling/ |
|||
|
What I would recommend is:-
|
|||||||||||||||||
|
works fine for me :) |
|||||||
|
|
A CSS2 compatible solution is to use:
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:
|
|||||||||
|
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. =) |
|||||
|
|
If you need it to be the width of its child, yet still position itself like a block element you could try this:
Then again, this could defeat the purpose of div.holderDiv anyway depending on your context. |
|||||||
|
|
What works for me is
in the div. (Tested on firefox and google chrome). |
|||
|
|
|
Not knowing in what context this will appear, but I believe the CSS-style property Please correct me if I'm wrong though, I'm not 100% sure, and currently can't test it myself. |
||||
|
|
Tampering around with Firebug I found the property value
Although it only works on Firefox, I couldn't find any equivalent for other browsers such as Chrome. |
|||
|
|
|
I have solved a similar problem (where I didn't want to use |
||||
|
|
|
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.
|
|||||
|
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.