JSFiddle - React, Tailwind, and code Playground
HTML
<table border=1>
<tr>
<td>
<p>Hello</p> <img src="http://www.freakypic.in/wp-content/uploads/2014/08/flower-images.jpg"/>
</td>
</tr>
</table>
CSS
img{
width:200px;
}
td{
border:2px solid red;
position:relative;
}
p{
position:absolute;
color:yellow;
font-size:30px;
top:0px;
left:70px;
}