JSFiddle - React, Tailwind, and code Playground
HTML
<div class="outer">
<div class="middle">
<div class="inner">
</div>
</div>
</div>
CSS
.outer {
width: 100px;
height: 150px;
border: solid 10px white;
}
.middle {
border: solid 40px white;
background-color: black;
background-clip:content-box;
transform:scale(1.01);
}
.inner {
position: relative;
height: 75px;
}