HTML 参考手册
HTML <thead> charoff 属性
把 <thead> 元素中的内容与字符 "M" 向右两个字符的位置对齐
源代码:
点击运行 »
<table border="1" width="100%"> <thead align="char" char="M" charoff="2"> <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>
运行结果:
点击运行 »