JSFiddle - React, Tailwind, and code Playground

by calder12

HTML

<body>
<div class="container">
    <div class="outside">
        <div class="inside"></div>
    </div>
</div>
</body>

CSS

.container{height:350px;width:480px;}
.outside{border: 2px solid red; min-height:100%; height:100%;padding:5%;}
.inside{border: 2px solid green; height:100%;  min-height:100%;}