JSFiddle - React, Tailwind, and code Playground
by Vinay Pratap Singh Bhadauria
HTML
<figure class="caption">
<a href="#" target="_blank">
<img src="http://www.google.co.in/images/srpr/logo4w.png" alt=" Not found">
</a>
<figcaption>This is a sample-caption that should wrap if it's width exceeds the width of the image</figcaption>
</figure>
CSS
figure {
display: table;
width: 50px;
border: 2px solid;
}
figcaption {
display: table-row;
}