TAILWIND How To Ignore Tags

So I have
<li class="relative hover:opacity-50">
  <button>Some button</button>

  <div class="dropdown-1"> </div>
</li>

How do I apply the hover-opacity:50 to the button tag only and not div class="dropdown-1"?
Was this page helpful?