JSFiddle - React, Tailwind, and code Playground

by RichieHindle

HTML

<table>
<tr>
<td style="border: 1px solid black">
<img style="border: 1px solid red" src="picture.png" />
</td>
</tr>
<tr>
<td style="border: 1px solid black">
<img style="border: 1px solid red" class="fixed" src="picture.png" />
</td>
</tr>
</table>

CSS

img.fixed {
    vertical-align: bottom;
}