I've got a table with two cells. One has a link in it and the other has an image.
<table>
<tr>
<td>
<a href="https://google.com">My Link</a>
</td>
<td>
<img src="https://www.google.co.uk/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" />
</td>
</tr>
</table>
How can I make the whole of the first cell work as a link rather than just the text itself.
There may be different sized images so I can't rely on it being a fixed height.