JSFiddle - React, Tailwind, and code Playground

by nottrobin

HTML

<p class="container">
    <div class="inner">
    </div>
</p>

CSS

.container {
    background-color: black;
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.inner {
    position: absolute;
    background-color: red;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
}