HTML <thead> charoff 属性
charoff 属性用于设置 <thead> 元素中的内容相对于由 char 属性设置的字符的对齐偏移量
仅当 align 属性设置为 "char" 且已设置 char 属性时,才能使用 charoff 属性
HTML5 不支持 <thead> charoff 属性
语法
<thead charoff=" number "></thead>
属性值
值 | 描述 |
---|---|
number | 设置对齐方式 正数设置向字符的右边对齐。负数设置向字符的左边对齐 |
浏览器支持
几乎所有的主流浏览器都不支持 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>