JSFiddle - React, Tailwind, and code Playground
by sberube
HTML
<div class="box">
<div class="inner-box">
</div>
</div>
CSS
.box {
width: 200px;
height: 200px;
border: 1px solid blue;
position: relative;
}
.inner-box {
background-color: red;
height: 10px;
width: 10px;
top: 5px;
right: 5px;
position: absolute;
}