最新的Web开发教程
 

HTML <tfoot> charoff Attribute

<HTML <tfoot>标记

对齐内容里面<tfoot>从元素两个字符的权利"." 字符:

<table>
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
    <tr>
      <td>January</td>
      <td>$100</td>
    </tr>
    <tr>
      <td>February</td>
      <td>$80</td>
    </tr>
  <tfoot align="char" char="." charoff="2">
    <tr>
      <td>Sum</td>
      <td>$180.00</td>
    </tr>
  </tfoot> 
</table>
试一试»

定义和用法

<tfoot> charoff属性不是HTML5的支持。

所述charoff属性设定的字符数内的内容<tfoot>元素将被从指定的字符对齐char属性。

charoff如果只能用属性char指定的属性和所述align属性被设置为“字符”。


浏览器支持

属性
charoff 不支持 不支持 不支持 不支持 不支持

句法

<tfoot charoff="number">

属性值

描述
number 指定的对准。
正数指定字符的右对齐。
负数指定到字符的左侧对齐。

<HTML <tfoot>标记