Skip to content

Instantly share code, notes, and snippets.

@aaronrussell
Created March 23, 2010 13:45
Show Gist options
  • Save aaronrussell/341180 to your computer and use it in GitHub Desktop.
Save aaronrussell/341180 to your computer and use it in GitHub Desktop.
<!--
The effect I'm trying to achieve is to have a floated DIV which contains an image and a caption.
I can't guarantee the size of the image. It might be 200px, 400px or anything in-between.
I wan't the floated DIV to stay the width of the image, and then the caption underneath to wrap
onto multiple lines if it is wider than the image - rather than stretch the width of the DIV.
-->
<style>
/* Here's a simplified version of my CSS */
div {background: #cecece; float:left;}
div image {border: 1px solid #000;}
div p { /* ??? */ }
</style>
<div>
<img src="whatever" /> <!-- I can't guarantee what width this image will be -->
<p>A caption which may well be wider than the image above.</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment