charoff屬性設(shè)置 <tfoot>元素內(nèi)的內(nèi)容將從char屬性指定的字符開始對齊的字符數(shù)。只有在指定了char屬性并且align屬性設(shè)置為“ char”的情況下,才能使用charoff屬性。
把 <tfoot> 元素中的內(nèi)容與字符 "." 向右兩個字符的位置對齊:
<table style="width:100%;" border="1"> <tr> <th>程序語言書籍</th> <th>價格</th> </tr> <tr> <td align="right">PHP菜鳥教程</td> <td>$30</td> </tr> <tr> <td align="left">JAVA編程思想</td> <td>$80</td> </tr> <tfoot align="char" char="." charoff="2"> <tr> <td>總計</td> <td>$110.00</td> </tr> </tfoot> </table>測試看看 ?/?
IEFirefoxOperaChromeSafari
幾乎所有的主流瀏覽器都不支持 charoff 屬性。
HTML5 不支持 <tfoot> charoff 屬性。
charoff屬性設(shè)置<tfoot>元素內(nèi)的內(nèi)容將從char屬性指定的字符開始對齊的字符數(shù)。
只有在指定了char屬性并且align屬性設(shè)置為“ char”的情況下,才能使用charoff屬性。
<tfoot charoff="number">
值 | 描述 |
---|---|
number | 指定對齊方式。 正數(shù)指定向字符的右邊對齊。 負(fù)數(shù)指定向字符的左邊對齊。 |