JSFiddle - React, Tailwind, and code Playground

by Kyle

HTML

<a>
    <img src="http://placehold.it/100x100" /> 
    <div> 
    </div>
</a>

CSS

a div
{
    background-image: url(http://placehold.it/200x200);
    width: 200px;
    height: 200px; /*dimensions to show bg image change*/
}

a:hover div
{
    background-image: url(http://placehold.it/400x400);
}