JSFiddle - React, Tailwind, and code Playground

by Trufa

HTML

<div id="container">
    
    <div class="box">
    </div>
    <div class="box">
    </div>
    <div class="box">
    </div>
    
    
</div>

CSS

div{

    
    
}

#container{
    outline:1px solid red;

    height:606px;
    width:500px;
    overflow:hidden;

}
.box{

    border:1px solid gray;
    height:200px;
    width:480px;
    float:left;
    margin-left:10px;
    -webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
    
}