JSFiddle - React, Tailwind, and code Playground

by borayeris

HTML

<div id="space">
    <div id="large"></div> 
    <div class="small"></div>
    <div class="small"></div>
    <div class="small"></div>
</div>

CSS

#space{
    width:100%;
    
    
}
#large{
    width:60%;
    height:315px;
    border:1px solid red;
    float:left;
    margin:3px 3px;
}
.small{
    width:30%;
    height:100px;
    border:1px solid green;
    float:left;
    margin:3px 3px;
}