JSFiddle - React, Tailwind, and code Playground
by James Doyle
HTML
<div id="div1">
<img src="http://albertabeachbum.com/images/icons/BoatLaunch.png" width="50" height="50" alt="" />
<span>Here is some text.</span>
</div>
CSS
div {
color:#fff;
height:100px;
width:200px;
background:#000;
}
div span {
text-indent: -999em;
}
div:hover span {
text-indent: 0em;
}