JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<input type="text" autofocus>
</div>
CSS
div {
background-color: black;
height: 40px;
}
div:focus-within {
background-color: red;
}
<div>
<input type="text" autofocus>
</div>
div {
background-color: black;
height: 40px;
}
div:focus-within {
background-color: red;
}