JSFiddle - React, Tailwind, and code Playground

by bfelda

HTML

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

CSS

.container{
    position:fixed;
    height:500px;
    width:500px;
    overflow:auto;
}

.inner{
    height:1000px;
    width:1000px;
    background:lightgray;
}

.box1{
    border:solid 2px black;
    background:red;
    height:30px;
    width:30px;
}