最新的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>標記