JSFiddle - React, Tailwind, and code Playground

by Zeljko Tadic

HTML

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

CSS

body {
 padding:0;
 margin:0;
 }
 .container {
 font-size: 0;
 height: 100%;
 width: 100%;
 position: fixed;
 top: 0px;
 bottom: 0;
 overflow-y:auto;
 overflow-x:auto;
 }
.wrap{
    width:600px;
    height:100px;
}