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 should be floating next to each other.


I'm accepting Bart's jQuery answer on a provisional basis. If anyone can figure out a "pure" HTML+CSS solution, we'd all love to see it.

link|improve this question

56% accept rate
+1 for a fiddle. – Michael Irigoyen Oct 17 '11 at 21:09
feedback

2 Answers

up vote 4 down vote accepted

You cannot do this without adding a specific width to each div.shrink element.

Example: http://jsfiddle.net/e52pZ/2/

If the IMG size is a complete unknown, and will always be different, you could do something like this with jQuery:

$('.shrink').each(function(){
    var self = $(this);
    self.width(self.find('img').width())
});

Example: http://jsfiddle.net/e52pZ/7/

link|improve this answer
On a scale of one to infinity, how certain are you that you can't do this with just css/html ? – bukzor Oct 17 '11 at 21:32
Though I'm not Bart, I did try for quite a while, using various shrink wrapping techniques, etc. My certainty (on a scale of 1 to 10 -- sorry, I don't know what to do with infinity): 8. Hopefully someone will prove me wrong. I'd /love/ for this to be possible with only pure CSS & HTML. =) – Nathan Arthur Oct 17 '11 at 21:38
2  
On a scale of 1 to infinity... I am half way between 1 and infinity. ;) – Bart Oct 17 '11 at 21:40
I updated my jQuery snippet and fiddle link. Previous code didn't do quite what I expected it to. This one looks good. – Bart Oct 17 '11 at 21:56
feedback

A property of "display:table-cell" seems to get a little closer. It needs more work by people that know more than me though.

http://jsfiddle.net/e52pZ/12/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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