display: table-caption in css
table-caption in css
by harshapache
HTML
<figure>
<img height="100px" src="https://upload.wikimedia.org/wikipedia/commons/d/d9/Test.png">
<figcaption>Very long caption that should take the width of the image</figcaption>
</figure>
CSS
figure {
position: relative;
display: table-caption;
}