JSFiddle - React, Tailwind, and code Playground

by Vaibhav Mehta

HTML

<div class="wrapper">
    <h2><a href="#">Hello</a></h2>
    <ul>
        <li>One</li>
        <li>Two</li>
    </ul>
</div>

CSS

.wrapper:hover h2 a {
    color: red;
}