JSFiddle - React, Tailwind, and code Playground

by AlexandrAbakumov

HTML

<div class="container">
    <div class="child"></div>
</div>

CSS

.container {
    background: red;
    display: grid;
    height: 300px;
    padding: 3em;
    overflow: auto;
    width: 300px;
}

.child {
    height: 500px;
    background: #000;
}