HTML <thead>标签的charoff属性

HTML <thead>标签参考手册 HTML <thead>标签

示例

在下列示例中,<thead>元素中的内容以“月”字左边第一个字符为基准进行对齐。

<table border="1" width="100%">
  <thead align="char" char="月" charoff="-1">
    <tr>
      <th>月份</th>
      <th>存款</th>
    </tr>
  </thead>
    <tr>
      <td>一月</td>
      <td>100</td>
    </tr>
    <tr>
      <td>二月</td>
      <td>80</td>
    </tr>
</table>

试一个 »

定义及用法

<thead>标签的charoff属性用于指出相对于第一个对齐字符的偏移量。

charoff属性需配合char属性使用,无法单独使用。


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

注意:所有主流浏览器都不支持<thead>标签的charoff属性。


语法

<thead charoff="value">

属性值

描述
数字 指定对齐方式。
正数为向右偏移。
负数为向左偏移。


HTML <thead>标签参考手册 HTML <thead>标签
粤ICP备11097351号-1