HTML Table 在 4(四)行组旁边设置了 2(两)行

HTML Table with 2 (two) rows set beside a 4 (four) row set

我如何实现这个 table 布局?

这是一个示例:

<!doctype html>
<html>
<head>
<title>Rows Demo </title>
<style>
table {
    border: 1px solid black;
}
td {
    border:1px solid blue;
}
</style>
</head>
<body>
<table>
<tr>
     <td rowspan=2>Something</td>
     <td rowspan=2>Something more</td>
     <td>LastColumn</td>
</tr>
<tr>
     <td>Column3</td>
</tr>
<tr>
     <td rowspan=2>Something</td>
     <td rowspan=2>Something more</td>
     <td>LastColumn</td>
</tr>
<tr>
    <td>Column3</td>
</tr>
</table>
</body>
</html>