JSFiddle - React, Tailwind, and code Playground
by mledbetter
HTML
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
</div>
CSS
.container {
border: solid 1px Green;
display: flex;
flex-direction: row;
}
.item:nth-child(odd){
background-color: #3498db;
flex: 1 1 50px;
}
.item:nth-child(even){
background-color: #2ecc71;
flex: 0 1 80px
}