JSFiddle - React, Tailwind, and code Playground

by stackmanoz

HTML

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

CSS

.container
{
    width:100%;
    height:100%;
    
    position:absolute;
    
}
.span2
{
    
    width:90%;
    height:90%;
    border:2px solid #ddd;
}