JSFiddle - React, Tailwind, and code Playground

by Rob Crowther

HTML

<figure>
    <img src="http://www.myhouserabbit.com/blog/wp-content/uploads/2009/04/rabbit.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>

CSS

figure {
    display: table;
    width: 1px; /* This can be any width, so long as it's narrower than any image */
}
img, figcaption {
    display: table-row;
}