JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
    foo
    <div class="content">bar</div>
</div>

CSS

.parent {
    box-shadow : inset 0 0 5px 0 black;
}

.content {
    background : #EEE;
}