HTML 参考手册
HTML <thead> align 属性
向左对齐 <thead> 元素中的内容
源代码:
点击运行 »
<table border="1" width="100%"> <thead align="left"> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table>
运行结果:
点击运行 »