HTML thead char 属性

最后更新于:2022-03-26 23:17:13

HTML <thead> char 属性

HTML thead char 属性 HTML <thead> 标签

实例

把 <thead> 元素中的内容与字符 “M” 对齐:

<table border=”1″
width=”100%”>
 
<thead align=”char” char=”M”>
 
 
<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>

尝试一下 »


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

几乎所有的主流浏览器都不支持 char 属性。


定义和用法

HTML5 不支持 <thead> char 属性。

char 属性规定 <thead> 元素中的内容相对某个字符的对齐方式。

仅当 align 属性设置为 “char” 时,才能使用 char 属性。

char 属性的默认值是当前页面语言的小数点字符。


语法

<thead char=”character“>

属性值

描述
character 规定将内容与之对齐的字符。


HTML thead char 属性 HTML <thead> 标签