JSFiddle - React, Tailwind, and code Playground
HTML
<div id="footer">
<span>Text</span>
<span><img src="http://www.klm.com/jobs/nl/images/icon_flight_32x32_tcm701-312701.gif" /></span>
<span>Morsdfse text ksjdhfkjshfkjhsdjfhsf s]sdfjnksdjfhjskhf</span>
</div>
CSS
#footer {
width: 100%;
display: table;
table-layout: fixed;
background: gray;
}
#footer span {
display: table-cell;
}
#footer span:nth-child(2) { text-align: center; }
#footer span:last-child { text-align: right; }