JSFiddle - React, Tailwind, and code Playground
HTML
<div class="outside">
<div class="inside">
</div>
</div>
CSS
.outside {
margin:32px;
background-color: blue;
width: 100px;
height: 100px;
overflow: visible;
}
.inside {
position: relative;
top: -16px;
border: 2px solid green;
width: 100px;
height: 100px;
}