HTML 参考手册
HTML <th> height 属性
CSS - 实例:设置表头单元格的高度
源代码:
点击运行 »
<html> <body> <table border="1"> <tr> <th style="height:100px">Month</th> <th style="height:100px">Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table> </body> </html>
运行结果:
点击运行 »