Tagged Questions

101
votes
10answers
78k 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
190 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
96 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 ...
3
votes
2answers
63 views

shrink caption to size of image

Is there any way to tell my span to wrap before it increases the size of its parent div? My mockup: http://jsfiddle.net/e52pZ/4/ The colored blocks are images of undefined size, and The white blocks ...
3
votes
3answers
1k views

CSS shrink container to size of two dynamic width divs

This is what I'm trying to achieve CONTAINER -------------------------------------------------------------- | CENTERED in CONTAINER ...
1
vote
1answer
228 views

GridView Column Width - How To Stop “Shrink-To-Fit” Behavior

I am currently trying to implement a GridView with a frozen header. I've gotten the header frozen using javascript found online. Here is the code: var GridId = "<%=dgContacts.ClientID %>"; ...
1
vote
3answers
86 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
306 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
3answers
54 views

Make the div with expand to the width of containing spans

How can I make a div container expand its width to contain all its child spans in one row? Please see the example here. I would like the div to have all the buttons inside it in one row. UPDATE The ...
0
votes
1answer
47 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
81 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
61 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
123 views

Shrinkwrapping floating divs of variable number, width, and height inside another div

In order to achieve matching heights of various divs of variable number, width, and height, I am using a jQuery script that requires those divs to be floating. However, I would like them centered, so ...
0
votes
1answer
374 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 ...
0
votes
1answer
289 views

IE6 Shrink-wrap with Rounded Corners

In FF and IE8 things look pretty good. I have a mock up of the drop down that I'm trying to create with rounded corners at bottom here: www.geowinedb.org/drop-down-test/test.html. In IE6 the mega ...