Я пытаюсь выполнить следующее с помощью CSS:
<table border="1" width="300px">
<tr>
<td rowspan="2">This row should equal the height (no fixed-height allowed) of the 2 rows sitting to the right.</td>
<td>Here is some sample text. And some additional sample text.</td>
</tr>
<tr>
<td>Here is some sample text. And some additional sample text.</td>
</tr>
</table>
В примерах, которые я видел для этого, используются фиксированные высоты или разрешено обтекание содержимого вокруг левого столбца. Есть ли элегантный способ сделать это с помощью CSS?