JSFiddle - React, Tailwind, and code Playground
by CarloOV
HTML
<div class="css outer">
</div>
<div class="css inner">
</div>
CSS
body {
margin: 50px
}
div {
height: 100px;
width: 100px;
padding: 10px;
background: green;
}
.inner {
background: yellow;
margin-top: -100px;
margin-left: 10px;
}
.css.outer:hover {
border: 2px inset red;
}
.css.inner:hover
{
border: 2px inset blue;
}
.js {
margin-top: 50px;
}
.js.inner {
margin-top: 0;
}