HTML <thead> 标签charoff属性
-
<thead>标签charoff属性定义和用法
HTML5中不支持<thead> charoff属性。
charoff属性设置<thead>元素内的内容将与char属性指定的字符对齐的字符数。
只有在指定char属性且align属性设置为“char”时,才能使用charoff属性。 -
<thead>标签charoff属性浏览器支持
Edge/IE Chrome FireFox Safari Opera 不支持 不支持 不支持 不支持 不支持 -
HTML4.01和HTML5之间的差异
在HTML5不支持<thead>标签charoff属性。
-
<thead>标签charoff属性语法
<thead charoff="number"> -
<thead>标签charoff属性实例
尝试一下<table style="width:100%"> <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属性的值
值 描述 number 指定对齐方式。
正数指定字符右侧的对齐方式。
负数指定字符左侧的对齐方式。