<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h1>th rowspan 属性</h1>
<table>
<tr>
<th>月份</th>
<th>存款</th>
<th rowspan="3">节假日的储蓄!</th>
</tr>
<tr>
<td>一月</td>
<td>¥3000</td>
</tr>
<tr>
<td>二月</td>
<td>¥4000</td>
</tr>
</table>
</body>
</html>