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