JSFiddle - React, Tailwind, and code Playground

by Alan Doe

HTML

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

CSS

html
{
    width:100%;
    height:100%;
    
}
body
{
    width:100%;
    height:100%;
    
}
.content
{
    width:100%;
    height:100%;
    background:rgb(136,236,86);
}
.container
{
    width:80%;
    height:100%;
    background-color:white;
    border-radius:10px;
    border:1px solid rgb(240,240,240);
    margin-right:auto;
    margin-left:auto;
    
}