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