JSFiddle - React, Tailwind, and code Playground
HTML
<div class="tudo">
<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>
</div>
CSS
.tudo {
width: 500px;
height: 300px;
}
.div1 {
float: left;
width: 30%;
height: 100%;
background-color: #ffff48;
}
.div2 {
float:left;
width: 30%;
height: 100%;
background-color: #3d3dff;
}
.div3 {
float: left;
width: 30%;
height: 100%;
background-color: #ff3838;
}