JSFiddle - React, Tailwind, and code Playground

by Nabaraj Saha

HTML

<div class="div">
    <div class="cd"></div>
    <div class="cd"></div>
    <div class="cd"></div>
</div>

CSS

.div{
    height:100px;
    background-color:#333333;
    border:1px solid;
    width:300px;
}
.cd{
    float:left;
    width:100px;
    background-color:RGBA(204, 255, 204,0.5);
    height:100px;
}