HTML 参考手册
HTML <tr> valign 属性
带有不同垂直对齐行的 HTML 表
源代码:
点击运行 »
<table border="1" style="height:200px"> <tr valign="middle"> <th>Month</th> <th>Savings</th> </tr> <tr valign="bottom"> <td>January</td> <td>$100</td> </tr> </table>
运行结果:
点击运行 »