Say, I got this code:

<figure>
 <img src="bunnyrabbit.jpg" width="200" height="150" alt="An image of a bunny rabbit." />
 <figcaption>Bunny rabits are cuddly and fluffy creatures with big ears. They eat carrots.</figcaption>
</figure>

If I don't use any CSS the figcaption will expand the width of the figure element beyond 200px. How can I prevent this?

I know I can force the text inside the figcaption to wrap by specifying the width of the figure element (<figure style="width:200px;">) but I don't really want to use this for each and every image.

link|improve this question
That’s a very good question. Welcome to Stack Overflow! – Paul D. Waite Jun 30 '11 at 12:10
Thanks. To expand a bit on the issue, what I'm trying to do is float a figcaption to the right of an image: figure { display: block; border: 1px solid #333; } figure img { float: left; } figcaption { float: left; padding: 4px; } If the text inside the figcaption is too long the element is wrapped underneath the image. Same issue, but in a slightly different way. Another issue is that when the figcaption is floated the figure element collapses. Is there a CSS alternative for adding a <br clear /> after the figcaption? – rkhff Jun 30 '11 at 13:06
I'm not sure I understand - do you want the figcaption to be the same width as the image, but not under the image? – robertc Jun 30 '11 at 13:49
ah, so I've actually re-stated the question wrongly, at least as far as your actual issue goes. – Paul D. Waite Jun 30 '11 at 14:15
feedback

2 Answers

up vote 5 down vote accepted

This will place the figcaption side by side with the img:

figure {
    display: table;
}
img, figcaption {
    display: table-cell;
    vertical-align: bottom;
}
figcaption {
    padding-left: 4px;
}

Here's an example. However I'm not entirely clear what you're trying to achieve - you say in the question that you want the figure to stay at 200px width, but then you comment that you want the figcaption to appear to the right, which would make the figure wider. If all you want is for the figcaption to be restricted to the width of the image, this should work:

figure {
    display: table;
    width: 1px; /* This can be any width, so long as it's narrower than any image */
}
img, figcaption {
    display: table-row;
}
link|improve this answer
Thanks a million, that's sorted. Apologies for the confusion about my comment, I got a bit carried away and realise the two issues are quite different (though both are solved with display:table / table-cell / table-row). – rkhff Jun 30 '11 at 16:48
There may be problems with this approach - when I use it my images disappear on IE. – And Finally Apr 27 at 9:05
@AndFinally What version of IE? – robertc Apr 27 at 10:03
robertc, think it was ie7, ie8 modes of ie9 as well as ie9. I've since found this simpler css works for all except ie7. I'm probably going to have to size the figure to the image width with jquery for that browser. figure { display: table; width: 100px; } .ie7 figure { display: block; width: auto; } – And Finally Apr 27 at 10:07
@AndFinally OK, thanks - mostly I use Linux so I can't test stuff in IE. Since it seems to work in every other browser however, this is probably an IE bug. – robertc Apr 27 at 12:22
feedback

Unfortunately, setting the width of the figure instead of using max-width: 100% means that it won't shrink on narrow (mobile) devices. That is, the images will not be responsive. I resorted to inserting <br /> to break up long captions, but I didn't like it. But this obscure CSS feature seems to work for me:

figcaption { display: run-in; width: 150px }

This keeps the image responsive, even though the caption isn't. You can pick your own caption width. I also added margin: auto; text-align: center; to center the caption on a mobile device.

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.