最新的Web开发教程
 

HTML <thead> charoff Attribute

<HTML <thead>标记

对准里面的内容<thead>两个字符,从右侧"M"字:

<table>
  <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>
试一试»

定义和用法

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

所述charoff属性设置字符里面的内容的数量<thead>元素将从由指定的字符对齐char属性。

charoff如果只能用属性char指定的属性和所述align属性被设置为"char"


浏览器支持

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

句法

<thead charoff="number">

属性值

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

<HTML <thead>标记