JSFiddle - React, Tailwind, and code Playground
by mlms13
HTML
<div id="parent">
<div id="child">
</div>
</div>
CSS
#parent {
background: #cea;
border-radius: 8px;
height: 200px;
overflow: hidden;
position: relative;
width: 300px;
}
#child {
background: #666;
height: 30px;
}