HTML 参考手册
HTML <th> rowspan 属性
rowspan="0" 的使用 - 该实例只适用于 Firefox 和 Opera 浏览器,实例演示了 rowspan="0" 的使用。
源代码:
点击运行 »
<table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> <th rowspan="3">Savings for holiday!</th> </tr> </thead> <tbody> <tr> <td>January</td> <td>$100</td> <td rowspan="0">$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody> </table> <p><b>注意:</b>该实例只适用于 Firefox 和 Opera 浏览器,实例演示了 rowspan="0" 的使用。</p>
运行结果:
点击运行 »