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;
}
img, figcaption {
    display: table-cell;
    vertical-align: bottom;
}
figcaption {
    padding-left: 4px;
}