JSFiddle - React, Tailwind, and code Playground

HTML

<ul id="testmenu">
    <li><a href="#">Will be selected</a></li>
    <li><div><a href="#">Will not be selected</a></div></li>
</ul>

CSS

#testmenu li:hover > a{
    color: #fafafa;
}