Tagged Questions

95
votes
11answers
73k views

Make CSS Div Width Equal To Contents

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? ...
6
votes
3answers
165 views

Shrink-wrap / Shrink-to-fit a div to reflowed floated divs in css

http://jsfiddle.net/zEcn3/12/ I'm trying to get a div "content" that resizes to the number of divs that fit in a line. So the example works fine when the window is bigger than all the 'item' divs ...
3
votes
1answer
76 views

How can the CSS “Shrinkwrap” method work with max-width and without BR line-break tag?

I'm attempting to create a max-width bounding box which will both wrap text (on spaces, no word-breaking allowed) and shrinkwrap to the width of the longest line of text. For a demo of the various ...
1
vote
3answers
81 views

Shrink-To-Fit while floating bottom

See the box stuck the bottom right. Right now it as a fixed height of 300px. Instead I would like to be just as high as necessary. Meaning I need the height to adjust automatically to the content. ...
1
vote
2answers
295 views

IE7 Shrink-to-fit bug

haha typing "ie7" and "bug" brings up a lot of related questions. The entire page is an iframe onto another website (in this case, jquery.com just for demo purposes). I have an overlay "Hello World", ...
0
votes
1answer
31 views

Multi column and Shrink-Wrap

I ve been trying to make a layout that has a fixed height and creates as many columns of a certain size as need be to show some flow text. This works, but when I put it inside a div the div doesn't ...
0
votes
3answers
69 views

How to expand my background-div to its dynamic content?

I have created a three-column layout with div tags and I am now facing a problem. Around the three columns, there is a wrapper-div that is also used as a background (color and border). In the very ...
0
votes
1answer
56 views

How to remove extra space caused by word-wrap in shrunk to fit element?

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: ...
0
votes
1answer
329 views

How to make a shrink-to-fit container with max-height and scrollbars in the content area?

I am trying to achieve something like a regular windows' window with a title and a scrollable content area. The .frame shrinks to fit its variable size content and is limited only by ...