I am currently working on creating a table layout where the left column adjusts its height based on content, while the right column needs to have a fixed height of 300.
<table border="1" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
<tr>
<td valign="top" width="65%">
This is cell 1
</td>
<td valign="top" width="35%" height="300" rowspan="3" align="right">
This is a long cell
</td>
</tr>
<tr>
<td valign="top" width="65%">This is cell 2</td>
</tr>
<tr>
<td valign="top" width="65%">
This is cell 3
</td>
</tr>
</table>
This is what I have managed to create so far: https://jsfiddle.net/5y33rtm3/1/
https://i.sstatic.net/2s2nj.png
Desired final display: