JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

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

tr:nth-of-type(1) { height: 50% }
tr:nth-of-type(2) { height: 10px }