JSFiddle - React, Tailwind, and code Playground

by yijiang

HTML

<div id="outer">
    <div id="content">
    </div>
</div>

CSS

#outer {
    margin-top: 200px;
    overflow-y: hidden;
}

#content {
    width: 2000px;
    height: 2000px;
    
    background: orange;
}