HTML 参考手册
HTML <colgroup> charoff 属性
在下面的实例中,表格中第二列的内容与字符 "." 向右两个字符的位置对齐
源代码:
点击运行 »
<table width="100%" border="1"> <colgroup align="left"></colgroup> <colgroup align="char" char="." charoff="2"></colgroup> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100.00</td> </tr> <tr> <td>February</td> <td>$10.00</td> </tr> </table>
运行结果:
点击运行 »