JSFiddle - React, Tailwind, and code Playground

HTML

<table style="width: 100px;">
  <tr>
    <td>
      <img style="float: left;" src="http://bing.com/favicon.ico" />
    </td>
    <td>
      ...
    </td>
  </tr>
</table>

CSS

td:nth-of-type(1) { background: yellow }
td:nth-of-type(2) { background: lime; }

td:nth-of-type(1) { width: 75% }
td:nth-of-type(2) { width: 50px }