JSFiddle - React, Tailwind, and code Playground

HTML

<div class="nav">
  <ul>
    <li><a>Home</a></li>
  </ul>
</div>

CSS

.nav li a:focus, .nav li a:hover {
    text-decoration: none;
    background-color: red;
}