HTML 参考手册
HTML <tbody> valign 属性
把 <tbody> 元素中的内容垂直对齐到底部
源代码:
点击运行 »
<table border="1" width="100%"> <tr> <th>Month</th> <th>Savings</th> </tr> <tbody valign="bottom"> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody> </table>
运行结果:
点击运行 »