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