JSFiddle - React, Tailwind, and code Playground

by Joe Cisneros

HTML

<a href="">
	Player name
	<img src="thumb.jpg">
</a><br>
  test

CSS

a {position: relative;}
img {display: none; width: 100px; height: 100px; background: red; position: absolute; top: 20px; left: 0;}
a:hover img {display: block;}