JSFiddle - React, Tailwind, and code Playground

by sendil J

HTML

<div id='phases'>
    <div id='phasesGrp'>
        <div id='sec1'> </div>
        <div id='sec2'> </div>
        <div id='sec3'> </div>
    </div>
</div>

CSS

#phases{
    width:500px;    
    
}
#sec1, #sec2, #sec3{
    width:auto;
    height:20px;
    background:grey;
    float:left;
    margin:2px;
    padding:5px;
    
}
#phasesGrp{
    width:100%;
}