JSFiddle - React, Tailwind, and code Playground
HTML
<section>
<div id="a"></div>
<div id="b"></div>
<div id="c"></div>
<div id="d"></div>
<div id="e"></div>
</section>
CSS
section { display: table; width: 100%;}
div { display: table-cell; height: 100px; border: 1px solid #000;}
#a { width:60px; }
#b { width:30%; }
#c { width:40px; }
#d { }
#e { width:100px; }