JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
<p>Some text</p>
</div>
CSS
.box {
background: url(http://lorempixum.com/300/100/nature) no-repeat;;
border: 10px solid #333;
width: 150px;
height: 100px;
-webkit-transition: background 0.2s ease-in-out;
-moz-transition: background 0.2s ease-in-out;
transition: background 0.2s ease-in-out;
}
.box:hover {
background-position: -150px 0;
}
.box p {
text-indent: -9999px;
}