JSFiddle - React, Tailwind, and code Playground

by Katarn

HTML

<div class="awesome">
  <div class="child">
    owo
  </div>
</div>

CSS

.awesome {
  background: red;
  padding: 20px;
}

.child {
  background: blue;
  padding: 20px;
}

.awesome:has(.child:hover) {
  background: green;
}