JSFiddle - React, Tailwind, and code Playground
by chovy
HTML
<div id="stuff">
<div id="name">Jesse James</div>
<div id="percent">100%</div>
</div>
CSS
#stuff { display: table; width: 200px; }
#stuff #name { display: table-cell; width: 100%; background: gray; }
#stuff #percent { display: table-cell; background: red; }