JSFiddle - React, Tailwind, and code Playground
by PH7Jack
HTML
<div class="body">
<div class="content">
</div>
</div>
CSS
.body {
background:blue;
width:300px;
height:300px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
.content {
position:absolute;
background: red;
width:200px;
height:200px;
top:-100px;
border-radius:100%;
}