JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<div>
<input type="text" autofocus>
</div>

CSS

div {
  background-color: black;
  height: 40px;
}
div:focus-within {
  background-color: red;
}