JSFiddle - React, Tailwind, and code Playground
by andig2
HTML
<div class="row">
<div class="float"></div>
<div class="c1 inline">text</div>
<div class="c2 smaller inline"></div>
<div class="c3 smaller"></div>
</div>
CSS
.row {
width: 100%;
margin: 0px auto;
max-width: 150px;
background-color: lightgray;
}
.float {
float: left;
width: 30px;
height: 30px;
background-color: red;
}
.smaller {
width: 60px;
height: 20px;
}
.c1 {
/* min-height: 30px; */
}
.c2 {
width: 50px;
background-color: green;
}
.c3 {
background-color: blue;
}