JSFiddle - React, Tailwind, and code Playground
HTML
<div class="a">
<div class="b">
<div class="c d"></div>
</div>
</div>
CSS
div {
height: 50px;
}
.a .b {
border: 1px solid red;
}
.c.d {
background: rgba(55,55,55,.33);
border-color: transparent;
}