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