JSFiddle - React, Tailwind, and code Playground

by Guruprasad Rao

HTML

<div id="holder">
<img src="#" alt="some image"></img>
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
</div>

CSS

#holder {width: 100%;}

#holder > img {width: 100px; height: 100px;}

#holder > ul {display: none;}

#holder:hover ul{display: block;}