JSFiddle - React, Tailwind, and code Playground

by rdenver6

HTML

<table>
<tr><td colspan=2>header row</td></tr>
<tr><td>column 1</td>
<td>
<div class="wrapper">
<div class="image">
<img src="https://via.placeholder.com/150">
</div>
<div class="text">
Text
</div>
</div>

</td>
</tr>
</table>

CSS

.wrapper {position:relative;}
.text {position:absolute; top:0; height:150px;}