JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
    <div class="inner">
        <div class="example">
        </div>
    </div>
</div>

CSS

.wrapper{
    width: 400px;
    height: 200px;
    border: 2px solid red;
}
.inner{
    
    overflow: hidden;
}
.example{
    width:600px;
    height:600px;
    background:green;
}