📅  最后修改于: 2023-12-03 14:41:57.499000             🧑  作者: Mango
<td>
charoff 属性charoff
属性用于定义 <td>
元素中字符间的偏移量。它指定了字符与单元格的边缘之间的像素数。
charoff
属性可以应用于 <td>
元素。
<td charoff="pixels">
其中,pixels
代表你希望设置的字符间偏移量的像素数值。
charoff
属性仅在 <td>
元素中生效。<table>
元素的 cellpadding
属性。<table>
<tr>
<td charoff="5">First Cell</td>
<td charoff="10">Second Cell</td>
</tr>
<tr>
<td charoff="15">Third Cell</td>
<td charoff="20">Fourth Cell</td>
</tr>
</table>
上述示例中,第一个单元格的字符间偏移量为 5 像素,第二个单元格为 10 像素,以此类推。