vote up 3 vote down star
1

I am essentially trying to create a version of the "figure" element (upcoming in HTML5), whereby I have an image with a short description below it.

However, I want to limit the width of this entire element to that of the image, so the text isn't wider than the image (wrapping to multiple lines if necessary).

Basic HTML:

<div class="figure">
<img src="..." alt="..." width="..." height="..." /><br />
A description for the image
</div>

I'm well-versed with CSS but I can't think of any pure CSS solution, without adding a style="width:100px" to the div to match the image width.

Update: After a bit of searching and thinking, the best method seems to be using an inline width on the div. I will keep the width attribute on the image, in case I wish the div to be a bit wider than the image (for example to accomodate a longer caption).

This approach also means I could have two images side-by-side with a caption below. If I have a set of images the same size, I can of course add an extra style to each div.

Thanks to everyone who answered!

flag

What's wrong with setting the width on the div? – strager Mar 6 at 2:15
I just don't think it's good code. For starters it means I'm duplicating the width declaration. If I change the image width I must change the div width too. (I know they're only next to each other.) There is a solution below though. – DisgruntledGoat Mar 6 at 15:00

5 Answers

vote up 1 vote down check

Stylesheet

div.figure * { width: 100% }
div.figure div { overflow: hidden; white-space: nowrap; }

note: to enable wrapping just remove that last css line

HTML

<div class="figure" style="width:150px;">
    <img src="logo.png" alt="logo" />
    <div>A description for the image</div>
</div>

I've checked it in Chrome, Firefox and IE7 and it looks good in all three. I realise this has the width on the div and not the img, but at least you only need to set the width in one place. Short of using css-expressions (IE only) I can't see a way of setting the outer divs width to the width of the first child element.

link|flag
I normally put a width/height on images because it's better for browser rendering - no layout jumping as the page loads, and the layout is preserved when images are unavailable. In this case I guess I'd put a height on the image and it would inherit the width. – DisgruntledGoat Mar 6 at 14:44
Also the * selector is a bad idea. I could have more elements in the caption (eg links) that might get messed up. It should be replaced with simply img (duv is 100% by default) – DisgruntledGoat Mar 6 at 14:52
fair comment on the * selector – Antony Scott Mar 6 at 15:00
vote up 0 vote down

I came up with a working and fairly clean solution.

The solution uses a table (or div with display:table if you prefer) and adds a second column to "push" the first cell into the minimum space it really needs. The table can be set to 1px width to stop it growing across the page. I've put together a demo to show this in action:

http://test.dev.arc.net.au/caption-layout.html

Tested and working in IE8, Firefox and Safari/Win

link|flag
Thanks for another solution, but the point of the question was to avoid unsemantic and unnecessary markup. As I posted in my question, setting a width on the outer div is generally a better solution for more control. I'm mixing style with the HTML but sometimes you have to. :) – DisgruntledGoat May 19 at 23:32
vote up 2 vote down

I had the same problem and after reading this decided to use an inline-style on the surrounding element. Seems the better solution over using a table to me.

link|flag
vote up 0 vote down

You could use the display:table solution for all other browsers, and a CSS Behaviour for Internet Explorer.

link|flag
vote up 0 vote down

For setting the width to match the image automatically you could use

.figure {
  display: table;
  width: 1px;
}

This makes the div behave like a table (not supported in Internet Explorer). Or you could use a table instead of the div. I don't think there is another way of setting the width automatically.

Edit: The simplest way is to forget about the auto width and set it by hand. If it is really needed you can use JavaScript or a table. In this case the use of a table is not so ugly because you are addressing a limitation of the HTML version. In the case of server-side scripting you could also set the width when generating the page.

link|flag
Your example by setting the display doesn't work in IE7. Not sure about IE6. – strager Mar 6 at 2:17
According to quirksmode.org/css/display.html it's not supported by released versions of IE. I guess the only option then is to use a table. – Angel Chiang Mar 6 at 2:29

Your Answer

Get an OpenID
or

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