JSFiddle - React, Tailwind, and code Playground

by stecb

HTML

<div class="image">
    <img src="http://2.bp.blogspot.com/_XUzqAlpMSxY/SbV0eo7MG3I/AAAAAAAAAU4/68jEMF-mQXA/s400/ararat_mountain.jpeg" alt="" />
    <div class="caption">This is the caption.</div>
</div>

CSS

.image{
    display:inline-block;
}
.image div.caption{
    background:red;
}